Difference between revisions of "API Component.SetSolid"
From Flowcode Help
Jump to navigationJump to searchLine 29: | Line 29: | ||
===Calling in a calculation=== | ===Calling in a calculation=== | ||
* Add to a calculation icon: <pre class="brush:[cpp]">::Component.SetSolid(target, true)</pre> | * Add to a calculation icon: <pre class="brush:[cpp]">::Component.SetSolid(target, true)</pre> | ||
− | |||
− |
Latest revision as of 11:54, 16 January 2023
![]() |
SetSolid |
Sets whether a component is checked in collision detections | |
![]() |
Target |
The component to set the state for | |
![]() |
Enabled |
True to enable, false to disable | |
![]() |
Return |
Detailed description
A solid component can collide with other solid objects on the panel. If an object is not solid, it will be ignored in collision tests.
Examples
Calling in a calculation
- Add to a calculation icon:
::Component.SetSolid(target, true)