[Plugin] Layers Panel 1.2.1
-
for the rendering button, at first, i thought it would open up an instant window for quick rendering instead of having to opening Artlantis separately. I think the render function makes more sense for those plug-in engines and so…. ( i used to run Shaderlight… not on your list either)
Keeping Artlantis not saying its a bad thing, there are pros and cons I would say.
Not so smooth wise. it does't happen all the time, but so far i found the following are most common.
1)The subject (layers and names) on your tool window does not response simultaneously to SU window. (i.e.; what I click add layer in your tool, I can see layer is added ONLY in the SU window, but not on tool's window) like they both do not spontaneously correspond.
- Having several SU files open. switching from one to other. The tool struggles to keep up.
ie; the tool's window content still showing the first SU model, even I have jump to working on the second model. (the first model still running at the back ground)
Sorry don't have a video (don't know how to, please enlighten me if there is a way to Screen-capture a video)
will let you know if there is further niggles - Having several SU files open. switching from one to other. The tool struggles to keep up.
-
and just now… it crashes
-
@ckho1985 said:
and just now… it crashes
Are you submitting the BugSplats? Did you enter any information we can use to look it up?
-
I confirm that the copy/paste issue when creation of new layers is needed is solved. Great work!
How about that:
@jiminy-billy-bob said:
@nanolin said:
Hello
You can sort the list by alphabetical order of layers? . It can be added as an option?
thanksSomeone (maybe you ?) already suggested this. So it's on my todo list
If possible, would be layer groups sorted too and would the user be able to overwrite the alphabetical sorting or just put a lower number as prefix in order to get the layer up?
-
-
载入文件 C:/Users/Seven-Yin/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/jbb_layers_panel/layers_panel.rb 时出错
Error: 126: ÕÒ²»µ½Ö¸¶¨µÄÄ£¿é¡£ - C:/Users/Seven-Yin/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/Win32API.so
C:/Users/Seven-Yin/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/jbb_layers_panel/layers_panel.rb:19:inrequire' C:/Users/Seven-Yin/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/jbb_layers_panel/layers_panel.rb:19:in
module:JBB_LayersPanel'
C:/Users/Seven-Yin/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/jbb_layers_panel/layers_panel.rb:5:in<top (required)>' D:/Tool/SketchUp 2014/Tools/extensions.rb:197:in
require'
D:/Tool/SketchUp 2014/Tools/extensions.rb:197:inload' C:/Users/Seven-Yin/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/jbb_layers_panel.rb:39:in
register_extension'
C:/Users/Seven-Yin/AppData/Roaming/SketchUp/SketchUp 2014/SketchUp/Plugins/jbb_layers_panel.rb:39:in `<top (required)>'Thank Quick Update,but Layers Panel Beta v1.0.2 Unable to load!
in Sketchup 2014Hope to be in Sketchup2014 Run!!
-
New version 1.0.3 !
Changelog :
- Fixed multiple important issues on OSX
Download in the plugin store !
-
@ckho1985 said:
- Having several SU files open. switching from one to other. The tool struggles to keep up.
ie; the tool's window content still showing the first SU model, even I have jump to working on the second model. (the first model still running at the back ground)
It's a limitation of the Sketchup API. I can't do better.
You have to move the view for the dialog to update. (Orbit, pan, etc)@ckho1985 said:
1)The subject (layers and names) on your tool window does not response simultaneously to SU window. (i.e.; what I click add layer in your tool, I can see layer is added ONLY in the SU window, but not on tool's window) like they both do not spontaneously correspond.
@tt_su said:
I just noticed that 1.0.2 doesn't update the WebDialog when you add/remove layers via the WebDialog. The model layers are created - it's just the UI doesn't.
Adding layer-groups updates the UI though.Actually, after some testing, serveral things -including this- were broken since version 1.0.0 on Mac. It's weird that nobody mentionned it earlier.
I fixed it, see below:
- Having several SU files open. switching from one to other. The tool struggles to keep up.
-
@tony bombata said:
interestingly, if you pin a file to sketchup 2014, and launch from the taskbar jumplist, it will open without errors - dont know if that helps
Thank you! It works!
I think it may be linked with SU current "Working Directory".
I tested some random folders. If current working directory is on other drive than SU installed(maybe it should be only C:) plugin crashes.
I have profile folders on D:. When I'm starting SU with desktop shortcut SU's working dir sets to D:\Profile\Desktop. When starting from pinned shortcut - C:\Windows\System32\jiminy-billy-bob, you are using relative paths in source. Maybe ruby engine tries load file using current working directory and only it's drive(D: in my case)
Maybe there is way to set up current working dir to system drive or any MS API to find system drive and try load required libraries with that path?
Or is this SU bug and about this should think SU developers?I think any can repeat this bug in Windows just changing "Working dir" in shortcut to any folder on any another than system drive.
Is there bugtracker?) -
-
Any updates you'd care to share on the work to make LP and Thea work together?
-
Thea doesn't expose any render funtion in ruby. The render is triggered on C++ side. So there is no way I can trigger it from Layers Panel. Therefore, it must be Thea that reads LP's attribute to see which layers have been tagged 'to be rendered' by the user.
(The same issue applies to render[in], shaderlight, twilight)It's pretty simple:
-
Check if LP is active (optional)
JBB_LayersPanel.isActive == true
-
Determine in which context the user is (active scene if one exists, otherwise the model)
if Sketchup.active_model.pages.selected_page == nil context = Sketchup.active_model else context = Sketchup.active_model.pages.selected_page end#if
-
Read the attributes to see which layers are tagged
layerId = layer.get_attribute("jbb_layerspanel", "ID") context.get_attribute("jbb_layerspanel_render", layerId)
It gives 0 or 1 if the layer should not be rendered, and 2 if the layer should be rendered.
I gave this to Tomasz, I don't know if he tried to add it to Thea or not.
I'll probably simplify all of this in an upcoming update with simply something like:
JBB_LayersPanel.render(layer)
that would returntrue
orfalse
. -
-
@vremennyi said:
Or is this SU bug and about this should think SU developers?
Yes - it's our fault. We're working on a fix.
-
Winx64chinse
SU2013english OK
SU2014english Not Work Still -
@unclex said:
Winx64chinse
SU2013english OK
SU2014english Not Work StillI invite you to read the post just above yours...
-
Hello Jiminy!
I had some time to test this baby and I cannot get it to work.I use Indigo Renderer (SkIndigo exporter 3.6.25.5 version), and:
- none of the peculiar and extra-useful tools of your plugin work (neither the "hide but render" or the "show but not render")
- when clicking on the Indigo Logo on the upper right corner of the plugin, a message is displayed saying that Indigo Is no tinstalled on the pc, whether it is instead, and it works like a charm if I use the SkIndigo export bar...
The plugin seems wonderful, really! Only, at the moment Indigo support is a little bit unconvincing
-
pibuz > It's indeend broken with Indigogo for some reason. I'll fix it.
amis > You're not the first to tell me this. I forgot, thanks to remind me, I'll take a loot at it.
So if I understand right, it works fine on winXP with SU2014, what is yout windows version now, and SU version? -
the update work great on Mac now. thanks!!
I am sure you are award of it… many have request a 'sort by name' function on the table. so we could navigate layers easily.
thanks once more -
sorry jiminy
I know it's not your fault
but I was so regretful for cannot using your wonderful plugins -
@unclex said:
sorry jiminy
I know it's not your fault
but I was so regretful for cannot using your wonderful pluginsDon't worry, no hard feelings.
While waiting for a fix, you can start Sketchup and then open your file from SU. It should work fine.
Advertisement