Vector3Value
A container object for a single Vector3 value.
Memory category | Instances |
---|
Member index 3
Description
A Vector3Value simply holds a Vector3 as a value. This value can be used for scripts to communicate, for objects to move to a preset location, etc.
History 11
- 553 Change PreferredDescriptor of changed from to Changed
- 553 Change Default of Value from to Vector3(0, 0, 0)
- 486 Change ThreadSafety of Value from ReadOnly to ReadSafe
- 462 Change ThreadSafety of changed from to Unsafe
- 462 Change ThreadSafety of Changed from to Unsafe
- 462 Change ThreadSafety of Value from to ReadOnly
- 335 Change Superclass of Vector3Value from Instance to ValueBase
- 50 Add changed
- 47 Add Changed
- 47 Add Value
- 47 Add Vector3Value
Members 3
Changed
Parameters (1) | |
---|---|
value | Vector3 |
Fired whenever the Vector3Value.Value of the Vector3Value is changed. It will run with the new value being stored in the argument object, instead of a string representing the property being changed.
This event, like other changed events, can be used to track when an Vector3Value changes and to track the different values that it may change to.
For instance, this may be useful in games that rely on Vector3Values to track positions in the game world.
Equivalent changed events exist for similar objects, such as NumberValue and StringValue, depending on what object type best suits the need.
Thread safety | Unsafe |
---|
Value
Type | Default | |
---|---|---|
Vector3 | 0, 0, 0 |
The stored Vector3.
Thread safety | ReadSafe |
---|---|
Category | Data |
Loaded/Saved | true |
changed
Parameters (1) | |
---|---|
value | Vector3 |
Thread safety | Unsafe |
---|