add info |
989onan bot (talk | contribs) Automated: update SyncDelegates |
||
(One intermediate revision by the same user not shown) | |||
Line 13: | Line 13: | ||
|Target|{{RootFieldType|DriveRef`1|[[Type:SyncAssetList`1|SyncAssetList`1]]<[[Type:Material|Material]]>}}|TypeAdv1=true| The list of materials in a renderer to swap out. | |Target|{{RootFieldType|DriveRef`1|[[Type:SyncAssetList`1|SyncAssetList`1]]<[[Type:Material|Material]]>}}|TypeAdv1=true| The list of materials in a renderer to swap out. | ||
|Sets|{{RootFieldType|SyncList`1|[[Type:SyncAssetList`1|SyncAssetList`1]]<[[Type:Material|Material]]>}}|TypeAdv2=true| The list of lists of materials in a renderer to swap out. | |Sets|{{RootFieldType|SyncList`1|[[Type:SyncAssetList`1|SyncAssetList`1]]<[[Type:Material|Material]]>}}|TypeAdv2=true| The list of lists of materials in a renderer to swap out. | ||
}} | |||
== Sync Delegates == | |||
{{Table ComponentTriggers | |||
|OnSetupFromMeshRenderer:[[Type:ButtonEventHandler|ButtonEventHandler]]|[[Type:ButtonEventHandler|ButtonEventHandler]]|true| | |||
}} | }} | ||
Latest revision as of 06:31, 17 March 2025
This article or section is a Stub. You can help the Resonite Wiki by expanding it.

Material set allows for switching the list of materials being used on a mesh dynamically at any given moment. It also allows for lengthening or shortening the list in real time, which can be used to material stack (things to avoid).
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. |
ActiveSetIndex
|
Int | The index into the Sets list of the materials to apply to the target renderer. |
Target
|
reference drive of SyncAssetList`1<Material> | The list of materials in a renderer to swap out. |
Sets
|
list of SyncAssetList`1<Material> | The list of lists of materials in a renderer to swap out. |
Sync Delegates
Method Name | Method type and Arguments. | Is the method hidden? | Description |
---|---|---|---|
OnSetupFromMeshRenderer:ButtonEventHandler
|
ButtonEventHandler | ✓ |
Usage
Attach this component to the same slot as a Mesh Renderer or a Skinned Mesh Renderer and hit the Setup From Mesh Renderer()
sync delegate to attach it to the material list. Next add a list (SyncAssetList`1<Material>) of each material list to Sets
you want to switch between. Lastly use ActiveSetIndex
to switch between each list in Sets
for Target
.
Examples
Can be used to switch a material set on an avatar to make them change material types (toon to pbs metallic) or from active camo to not active camo, etc.