Noel
Noel
SketchUp 2024 introduces the SUOverlayRef. The SDK comes with an example and the issue in question is reproducible with it (but not limited to it). To reproduce simply: 1) compile...
1. SketchUp/LayOut Version: SketchUp 2024 2. OS Platform: Windows When you save a sketchup component, observers are incorrectly notified that new components have been added. Adding new observers to this...
Documentation states that the Sketchup::Materials#each method returns nil  https://ruby.sketchup.com/Sketchup/Materials.html#each-instance_method It actually returns self ```ruby Sketchup.active_model.materials.each{} => # ```
# Version 1. SketchUp 2024 2. Windows (Probably mac too) # Description When the "new graphics engine" is being used, face-me component transforms are not updated after camera view change....
The GetEdges functions allow you to filter out edges that are standalone: ``` SU_RESULT SUEntitiesGetEdges( SUEntitiesRef entities, bool standalone_only, size_t len, SUEdgeRef edges[], size_t* count); ``` But this is not...
This behavior is true for all sketchup versions (2021 and below) This behavior is true for both mac and windows When toggling "save frames" on via a command like the...
1. SketchUp/LayOut Version: 2018 2. OS Platform: Windows Importing a file through the File->Import... menu entry fails to fire observers. ```ruby class DefinitionsObserver def onComponentAdded(definitions, definition) puts definitions, definition end...