989onan bot (talk | contribs) Automated: update SyncDelegates |
989onan bot (talk | contribs) Automated: update SyncDelegates |
||
Line 17: | Line 17: | ||
== Sync Delegates == | == Sync Delegates == | ||
{{Table ComponentTriggers | {{Table ComponentTriggers | ||
|SetFromLocalBounds[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| | |SetFromLocalBounds:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| | ||
|SetFromGlobalBounds[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| | |SetFromGlobalBounds:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| | ||
|SetFromPreciseBounds[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| | |SetFromPreciseBounds:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| | ||
|SetFromLocalBounds[[Type:Action|Action]]|[[Type:Action|Action]]|false|{{Template:SetFromLocalBounds}} | |SetFromLocalBounds:[[Type:Action|Action]]|[[Type:Action|Action]]|false|{{Template:SetFromLocalBounds}} | ||
|SetFromGlobalBounds[[Type:Action|Action]]|[[Type:Action|Action]]|false|{{Template:SetFromGlobalBounds}} | |SetFromGlobalBounds:[[Type:Action|Action]]|[[Type:Action|Action]]|false|{{Template:SetFromGlobalBounds}} | ||
|SetFromPreciseBounds[[Type:Action|Action]]|[[Type:Action|Action]]|false|{{Template:SetFromLocalBoundsPrecise}} | |SetFromPreciseBounds:[[Type:Action|Action]]|[[Type:Action|Action]]|false|{{Template:SetFromLocalBoundsPrecise}} | ||
}} | }} | ||
Latest revision as of 06:32, 17 March 2025
Component image 
Sphere Collider component as seen in the Scene Inspector

The SphereCollider generates a spherical collision shape based on an inputted radius.
Fields
Name | Type | Description |
---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. Some components stop their functionality when this field is disabled, but some don't. |
Offset
|
Float3 | The offset of the collider shape's position from the slot's position. |
Type
|
ColliderType | The type of collider. See the enum page for details. |
Mass
|
Float | How heavy this collider is in total. according to ProbablePrime this is in 1 KG per cubic meter. |
CharacterCollider
|
Bool | Whether an avatar should be prevented from moving into the collider's volume. |
IgnoreRaycasts
|
Bool | Whether an avatar's laser should be prevented from hitting the collider's volume. Also this applies to raycasting nodes or components. |
Radius
|
Float | How big the sphere is from center to outside edge. |
Sync Delegates
Method Name | Method type and Arguments. | Is the method hidden? | Description |
---|---|---|---|
SetFromLocalBounds:ButtonEventHandler
|
ButtonEventHandler | ✓ | |
SetFromGlobalBounds:ButtonEventHandler
|
ButtonEventHandler | ✓ | |
SetFromPreciseBounds:ButtonEventHandler
|
ButtonEventHandler | ✓ | |
SetFromLocalBounds:Action
|
Action | X | Gathers all objects and slots under this component's slot, creates a Bounding box that encapsulates all the points and Bounding boxes, and uses the Bounding box to set this component's values. Does all calculations in local space. |
SetFromGlobalBounds:Action
|
Action | X | Gathers all objects and slots under this component's slot, creates a Bounding box that encapsulates all the points and Bounding boxes, and uses the Bounding box to set this component's values. Does all calculations in global space. |
SetFromPreciseBounds:Action
|
Action | X | Gathers all objects and slots under this component's slot, creates a Bounding box that encapsulates all the points and Bounding boxes, and uses the Bounding box to set this component's values. Does all calculations in local space. Ignores floating point error. |