[Plugin] Skalp for SketchUp v2.0 (live section plugin)
-
@edson said:
you are welcome and deserving of this praise.
a lengthy tutorial on the advanced use you describe from page 25 of the user guide would be very appreciated. everyone using Skalp professionally would thank you for that.
best regards.
Edson,
It's my own favorite way of working which we use must of the time in our architectural office. Special for you I will make my next Video Tutorial on this advanced way of working.
The Skalp Team.
-
Great!
-
On special request a Video Tutorial about Skalp Pattern Layers (color by layer).
Skalp Pattern Layers uses an undocumented feature of Color by Layer in combination with the hidden line render mode to create an architectural section with everything white in the model except the section.
http://youtu.be/PKmunM1OO2o?list=PL4o5Ke8mDBjjka1kZPJ5-tMhf_d51CVbr
-
very good! I know this was explained in the user guide but seeing you do it completes the information.
if I may suggest another topic for a video, how about one on how to save skalp settings to a sketchup template?
regards.
-
@edson said:
very good! I know this was explained in the user guide but seeing you do it completes the information.
if I may suggest another topic for a video, how about one on how to save skalp settings to a sketchup template?
regards.
Edson,
After you setup a full Skalp model you can delete all entities, except the section planes and save it in a standard sketchup template.
The Skalp Team.
-
@skalp said:
@edson said:
very good! I know this was explained in the user guide but seeing you do it completes the information.
if I may suggest another topic for a video, how about one on how to save skalp settings to a sketchup template?
regards.
Edson,
After you setup a full Skalp model you can delete all entities, except the section planes and save it in a standard sketchup template.
The Skalp Team.
so the template will have a couple of section planes that section nothing? like ghost section planes? how does one deal with those section planes in a new model?
-
@edson said:
@skalp said:
@edson said:
very good! I know this was explained in the user guide but seeing you do it completes the information.
if I may suggest another topic for a video, how about one on how to save skalp settings to a sketchup template?
regards.
Edson,
After you setup a full Skalp model you can delete all entities, except the section planes and save it in a standard sketchup template.
The Skalp Team.
so the template will have a couple of section planes that section nothing? like ghost section planes? how does one deal with those section planes in a new model?
Edson,
From the moment you model something and the section plane intersect with the new model it will section the model. You can easy activate the different sections from the dialog box even if they don't section elements.
The Skalp Team.
-
@skalp said:
On special request a Video Tutorial about Skalp Pattern Layers (color by layer).
Skalp Pattern Layers uses an undocumented feature of Color by Layer in combination with the hidden line render mode to create an architectural section with everything white in the model except the section.
I see in your video that you add a bunch of layers. I guess you can get to high numbers of layers if you have a lot of different section patterns?
Maybe you could make your plugin work with Layers Panel, to automatically put all those layers in a layer group, and automatically collapse it so that they don't take much space in the dialog.
You can use LP's API for that : http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=57777 -
@jiminy-billy-bob said:
@skalp said:
On special request a Video Tutorial about Skalp Pattern Layers (color by layer).
Skalp Pattern Layers uses an undocumented feature of Color by Layer in combination with the hidden line render mode to create an architectural section with everything white in the model except the section.
I see in your video that you add a bunch of layers. I guess you can get to high numbers of layers if you have a lot of different section patterns?
Maybe you could make your plugin work with Layers Panel, to automatically put all those layers in a layer group, and automatically collapse it so that they don't take much space in the dialog.
You can use LP's API for that : http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=57777Thank,
Sounds like a good idea and we will look at it.
The Skalp Team.
-
@skalp said:
Thank,
Sounds like a good idea and we will look at it.
The Skalp Team.
I just realised I haven't added the "collapse_group" method, yet. I'll add it in the next version. And I broke "nest_into" like an idiot by renaming some methods in v1.2.0. So the below code is designed to run on version higher than v1.2.0, sorry about that.
You can do something like this in SU2014 (Skalp only works in 2014, right?):<span class="syntaxdefault">begin </span><span class="syntaxcomment">#In a rescue block so that it will silently not run if Layers Panel is not installed<br /></span><span class="syntaxdefault"> if Gem</span><span class="syntaxkeyword">;;</span><span class="syntaxdefault">Version</span><span class="syntaxkeyword">.new(</span><span class="syntaxdefault">JBB_LayersPanel</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">version</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">to_s</span><span class="syntaxkeyword">)</span><span class="syntaxdefault"> </span><span class="syntaxkeyword">></span><span class="syntaxdefault"> Gem</span><span class="syntaxkeyword">;;</span><span class="syntaxdefault">Version</span><span class="syntaxkeyword">.new(</span><span class="syntaxstring">'1.2.0'</span><span class="syntaxkeyword">)</span><span class="syntaxdefault"> <br /> groupID </span><span class="syntaxkeyword">=</span><span class="syntaxdefault"> JBB_LayersPanel</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">add_group</span><span class="syntaxkeyword">(</span><span class="syntaxstring">"Skalp"</span><span class="syntaxkeyword">)<br /></span><span class="syntaxdefault"> skalp_layers</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">each</span><span class="syntaxkeyword">{|</span><span class="syntaxdefault">layer</span><span class="syntaxkeyword">|<br /></span><span class="syntaxdefault"> layerID </span><span class="syntaxkeyword">=</span><span class="syntaxdefault"> JBB_LayersPanel</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">get_layerID</span><span class="syntaxkeyword">(</span><span class="syntaxdefault">layer</span><span class="syntaxkeyword">)<br /></span><span class="syntaxdefault"> JBB_LayersPanel</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">nest_into</span><span class="syntaxkeyword">(</span><span class="syntaxdefault">layerID</span><span class="syntaxkeyword">,</span><span class="syntaxdefault"> groupID</span><span class="syntaxkeyword">)<br /></span><span class="syntaxdefault"> </span><span class="syntaxkeyword">}<br /></span><span class="syntaxdefault"> JBB_LayersPanel</span><span class="syntaxkeyword">.</span><span class="syntaxdefault">collapse_group</span><span class="syntaxkeyword">(</span><span class="syntaxdefault">groupID</span><span class="syntaxkeyword">)<br /></span><span class="syntaxdefault"> end</span><span class="syntaxcomment">#if<br /></span><span class="syntaxdefault">rescue<br />end</span>
-
@jiminy-billy-bob said:
@skalp said:
On special request a Video Tutorial about Skalp Pattern Layers (color by layer).
Skalp Pattern Layers uses an undocumented feature of Color by Layer in combination with the hidden line render mode to create an architectural section with everything white in the model except the section.
I see in your video that you add a bunch of layers. I guess you can get to high numbers of layers if you have a lot of different section patterns?
Maybe you could make your plugin work with Layers Panel, to automatically put all those layers in a layer group, and automatically collapse it so that they don't take much space in the dialog.
You can use LP's API for that : http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=57777after realising how this method works I immediately thought of creating a group for the Skalp layers in LP. if this can be made automatically so much the better.
-
hey guys - what about the demo?
i would love to try and see for myself how your product is keeping up=)
-
Skalp only works in 2014?
-
-
Wow, this plugin looks excellentI do have a quick question about how Skalp works in layout, though, before I think about buying it.
For Skalp to be really useful for me, I would need it's sections to be recognized by the inference engine in Layout, so I could pull dimensions from the section cuts. I have been assuming that the Skalp sections don't work like that in Layout, but I didn't really start investigating this until yesterday and I couldn't find an answer on the website.
Could someone explain how these sections could be used in Layout, other than for just visualization?
Thanks!
-
Well that is pretty flipping awesome.
I'm buying this right now and will report back! Thanks for taking the time to make the demo vid.
-
@otb designworks said:
Wow, this plugin looks excellentI do have a quick question about how Skalp works in layout, though, before I think about buying it.
For Skalp to be really useful for me, I would need it's sections to be recognized by the inference engine in Layout, so I could pull dimensions from the section cuts. I have been assuming that the Skalp sections don't work like that in Layout, but I didn't really start investigating this until yesterday and I couldn't find an answer on the website.
Could someone explain how these sections could be used in Layout, other than for just visualization?
Thanks!
Chuck,
The Skalp section is standard SketchUp geometry. Using the inference engine in Layout is no problem at all. I made a little video to illustrate.
http://youtu.be/FYlxvsGagi4?t=3s
The Skalp Team.
-
-
I just bought it a little while ago, and it looks like it could be very useful.
However, it is pretty beta'ish at the moment, and I'm really looking forward to the next release, be it beta or not. I suppose it's not much point writing a beta/bug report now that it expires within a few days?As it says that this current beta version expires 30 august, I hope there will be a new version available very soon?
-
@bjornkn said:
I just bought it a little while ago, and it looks like it could be very useful.
However, it is pretty beta'ish at the moment, and I'm really looking forward to the next release, be it beta or not. I suppose it's not much point writing a beta/bug report now that it expires within a few days?As it says that this current beta version expires 30 august, I hope there will be a new version available very soon?
Please always write beta/bug reports to support@skalp4sketchup.be. This is important info for us. There will be a new beta this week.
The Skalp Team.
Advertisement