Component:ActiveUserCloudValueVariable`1: Difference between revisions

From Resonite Wiki
add more info
Automated: update Categories
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
<translate>
<translate>
<!--T:1-->
<!--T:1-->
{{stub}}
{{Infobox Component
{{Infobox Component
|Image=ActiveUserCloudValueVariable`1Component.png
|Image=ActiveUserCloudValueVariable`1Component.png
Line 16: Line 15:
|IsLinkedToCloud|Bool| ''(Read Only)'' Indicates whether this field was successfully bound to the target variable.
|IsLinkedToCloud|Bool| ''(Read Only)'' Indicates whether this field was successfully bound to the target variable.
|UpdateCloudVariable|Bool| Indicates that this variable should update the value in the cloud when it is written or driven to a different value.
|UpdateCloudVariable|Bool| Indicates that this variable should update the value in the cloud when it is written or driven to a different value.
|FallbackValue|Float| Default value if there is no current active user. If the active user's value isn't set, the definition default will be used instead.
|FallbackValue|'''T'''|TypeAdv3=true| Default value if there is no current active user. If the active user's value isn't set, the definition default will be used instead.
|Value|Float| The value from the cloud variable.
|Value|'''T'''|TypeAdv4=true| The value from the cloud variable.
}}
}}


Line 32: Line 31:
== Related Components ==
== Related Components ==
</translate>
</translate>
[[Category:ComponentStubs]]
[[Category:Generics{{#translation:}}]]
[[Category:Generics{{#translation:}}]]
[[Category:Components{{#translation:}}|Active User Cloud Value Variable`1]]
[[Category:Components{{#translation:}}|Active User Cloud Value Variable`1]]
[[Category:Generic Components{{#translation:}}|Active User Cloud Value Variable`1]]
[[Category:Components:Cloud:Variables{{#translation:}}|Active User Cloud Value Variable`1]]
[[Category:Components:Cloud:Variables{{#translation:}}|Active User Cloud Value Variable`1]]

Latest revision as of 20:51, 3 March 2024

Component image 
Active User Cloud Value Variable`1 component as seen in the Scene Inspector


The ActiveUserCloudValueVariable provides a field that is synced to a cloud variable, with the user it is parented under being the owner of the value. This node follows the same rules as Cloud Variables except that it caches the quickly made changes and then updates the cloud variable with the cached changes as soon as possible using the cloud.

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.
Path String The path of the variable this component will read, for the current active user
IsLinkedToCloud Bool (Read Only) Indicates whether this field was successfully bound to the target variable.
UpdateCloudVariable Bool Indicates that this variable should update the value in the cloud when it is written or driven to a different value.
FallbackValue T Default value if there is no current active user. If the active user's value isn't set, the definition default will be used instead.
Value T The value from the cloud variable.

Usage

To use this component, simply add it to a slot underneath a user's hierarchy and set the Path to the path of a cloud variable. (make sure that the variable and component are of the same type!) The component's Value field will then be filled with the value from the cloud variable.

Examples

Having an item where it changes to the user's color set on the cloud.

Related Components