💡 LightUp 7.1 | SketchUp's only real-time renderer that uses object-based rendering
Download Trial
Size of input point?
-
I have made a script that hides edges when clicked on and it works fine but I would like to be able to set the size of the input point to make it easier to hit the edge.
How can that be done?
Here is the central part of the code that hides the edge.def onLButtonDown(flags, x, y, view) @ip.pick(view,x,y) # Get the current pick object if (@ip.edge) then @ip.edge.hidden = true end # if on a edge, hide it end
-
You might try using a Sketchup::PickHelper class interface instead, and the new (SU2016+) window_pick() method.
Otherwise there is no way to change the pick aperture size, and Sketchup::InputPoint would use a "OnEdge" inference anyway.
Advertisement