Component:BoundingBoxDriver

From Resonite Wiki
Revision as of 15:47, 11 November 2024 by 989onan (talk | contribs) (Add info)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Component image 
Bounding Box Driver component as seen in the Scene Inspector

The BoundingBoxDriver component is commonly used in Basic text objects to size the collider based on the text. This takes any IBounded and turns its Bounding box data into its local space center point and local space size. This is useful for auto generating the size and center of a Component:BoxCollider around a procedural mesh.

Fields

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.
BoundedSource direct RelayRef`1<IBounded> The object to get Bounding box data from.
Size field drive of Float3 The field to drive with the local space size of the bounding box of BoundedSource.
Center field drive of Float3 The field to drive with the local space center of the bounding box of BoundedSource.
Padding Float3 how much to add to the output of Size
Scale Float3 how much to multiply the output of Size

Usage

Attach to a slot and provide BoundedSource. The output fields are best used to drive a Component:BoxCollider.

Examples

This article or section is a Stub. You can help the Resonite Wiki by expanding it.


See Also