Component:SimpleAwayIndicator: Difference between revisions

From Resonite Wiki
Added a bit more info about this component.
Automated: update Categories, SyncDelegates
Line 18: Line 18:
|Renderer|'''[[Component:MeshRenderer|MeshRenderer]]'''|TypeAdv2=true|Mesh renderer component whose materials should be replaced
|Renderer|'''[[Component:MeshRenderer|MeshRenderer]]'''|TypeAdv2=true|Mesh renderer component whose materials should be replaced
|_oldMaterials|{{RootFieldType|SyncAssetList`1|[[Type:Material|Material]]}}|TypeAdv3=true|Backup of the renderer's original material list. ''Written automatically when "Away" state is triggered.''
|_oldMaterials|{{RootFieldType|SyncAssetList`1|[[Type:Material|Material]]}}|TypeAdv3=true|Backup of the renderer's original material list. ''Written automatically when "Away" state is triggered.''
}}
== Sync Delegates ==
{{Table ComponentTriggers
|SetAway()|[[Type:Action|Action]]|
|Restore()|[[Type:Action|Action]]|
}}
}}


Line 35: Line 41:
</translate>
</translate>
[[Category:Components{{#translation:}}|Simple Away Indicator]]
[[Category:Components{{#translation:}}|Simple Away Indicator]]
[[Category:ComponentStub]]
[[Category:Components:Users{{#translation:}}|Simple Away Indicator]]
[[Category:Components:Users{{#translation:}}|Simple Away Indicator]]

Revision as of 13:12, 6 November 2024

Component image 
SimpleAwayIndicator component as seen in the Scene Inspector


The SimpleAwayIndicator indicates when a user doesn't have the session focused by temporarily replacing the materials of a MeshRenderer with the specified Away Material.

Usually found on the body slot of an avatar (but can be put anywhere in the world), this just needs a reference to the MeshRenderer or SkinnedMeshRenderer components to work.

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.
User User User whose away state will be watched. On avatars, may be set by an AvatarUserReferenceAssigner component.
AwayMaterial Material Material to display when the user is away.
Renderer MeshRenderer Mesh renderer component whose materials should be replaced
_oldMaterials list of Material Backup of the renderer's original material list. Written automatically when "Away" state is triggered.

Sync Delegates

Lua error in mw.text.lua at line 25: bad argument #1 to 'match' (string expected, got nil).
Triggers
Method Name Method type and Arguments. Is the method hidden? Description
Methods
Method Parameters Description
SetAway() none Stores the renderer's material list in _oldMaterials and replaces them with the AwayMaterial.
Restore() none Restores the renderer's materials from _oldMaterials.

Usage

This is used to make a customized or fancier way of stating that you are focused away into another world.

Examples

Related Components