Component:ReferenceOptionDescriptionDriver: Difference between revisions

From Resonite Wiki
imported>Mysticporo
Created page with "<languages></languages> <translate> <!--T:1--> {{stub}} {{Infobox Component |Image=ReferenceOptionDescriptionDriver`1Component.png |Name=Reference Option Description Driver`1..."
 
Spellcheck.
 
(7 intermediate revisions by 4 users not shown)
Line 2: Line 2:
<translate>
<translate>
<!--T:1-->
<!--T:1-->
{{stub}}
{{Infobox Component
{{Infobox Component
|Image=ReferenceOptionDescriptionDriver`1Component.png
|Image=ReferenceOptionDescriptionDriver`1Component.png
|Name=Reference Option Description Driver`1
|Name=Reference Option Description Driver`1
}}
}}
The '''Reference Option Description Driver''' component is used primarily to [[Drive|drive]] the parts that make up a [[Component:ContextMenuItemSource|Context Menu Item Source]]. This component along with ContextMenuItemSource is used in [[Context menu|context menus]] for toggles where the toggle controls a [[Reference Type|reference]] like a [[Slot|slot]] or object.


<!--T:2-->
<!--T:2-->
== Fields ==
== Fields ==
{{Table ComponentFields
{{Table ComponentFields
|Reference|SyncRef`1|TypeString0=SyncRef<IWorldElement>|
|Reference|{{RootFieldType|RelayRef`1|[[Type:SyncRef`1|SyncRef`1]]&lt;T&gt;}}|TypeAdv0=true| The reference field to compare against
|ForceDeselected|Bool|
|ForceDeselected|Bool| Forces any context menu item source to change regardless if it is deselected.
|Label|IField`1|TypeString2=IField<string>|
|Label|{{RootFieldType|FieldDrive`1|[[Type:String|String]]}}|TypeAdv2=true| The string to set to the chosen label in the list of <code>Options</code>
|Color|IField`1|TypeString3=IField<color>|
|Color|{{RootFieldType|FieldDrive`1|[[Type:ColorX|ColorX]]}}|TypeAdv3=true| The color to set to the chosen color in the list of <code>Options</code>
|Sprite|SyncRef`1|TypeString4=SyncRef<IAssetProvider<Sprite>>|
|Sprite|{{RootFieldType|RefDrive`1|[[Type:IAssetProvider`1|IAssetProvider`1]]&lt;[[Type:Sprite|Sprite]]&gt;}}|TypeAdv4=true| The Sprite to set to the chosen Sprite in the list of <code>Options</code>
|DefaultOption|Option|TypeString5=ReferenceOptionDescriptionDriver<IWorldElement>|
|DefaultOption|{{RootFieldType|(nested)|[[#Option|Option]]&lt;T&gt;}}|TypeAdv5=true| The option to set <code>Label</code>, <code>Color</code>, and <code>Sprite</code> to when <code>Reference</code> doesn't match any <code>ReferenceTarget</code>s under the list of <code>Options</code>
|Options|SyncList`1|TypeString6=SyncList<ReferenceOptionDescriptionDriver<IWorldElement>>|
|Options|{{RootFieldType|SyncList`1|[[#Option|Option]]&lt;T&gt;}}|TypeAdv6=true| The list to search for a <code>ReferenceTarget</code> that matches <code>Reference</code>. once a match is found, the option's <code>Label</code>, <code>Color</code>, and <code>Sprite</code> is used to drive this section's drive targets of <code>Label</code>, <code>Color</code>, and <code>Sprite</code>.
}}
 
== Option ==
{{Table TypeFields
|ReferenceTarget|[[Type:SyncRef`1|SyncRef`1]]&lt;T&gt;|TypeAdv0=true| The values below should be used if <code>Reference</code> is equal to this.
|Label|[[Type:String|String]]|TypeAdv1=true| The label to use if <code>ReferenceTarget</code> matches <code>Reference</code>
|Color|[[Type:ColorX|ColorX]]|TypeAdv2=true| The color to use if <code>ReferenceTarget</code> matches <code>Reference</code>
|Sprite|[[Type:IAssetProvider`1|IAssetProvider`1]]&lt;[[Type:Sprite|Sprite]]&gt;|TypeAdv3=true| The sprite to use if <code>ReferenceTarget</code> matches <code>Reference</code>
}}
}}


<!--T:3-->
<!--T:3-->
== Usage ==
== Usage ==
This component can be more efficient than using a bunch of [[Component:ReferenceEqualityDriver|Reference Equality Drivers]] and generating a number based on such, or using [[ProtoFlux]] for a context menu.


<!--T:4-->
<!--T:4-->
== Examples ==
== Examples ==
This is useful for managing toggles where you want to switch things like music and drive the description based on which music asset you chose in your context menu.


<!--T:5-->
<!--T:5-->
== Related Components ==
== Related Components ==
</translate>
</translate>
[[Category:ComponentStubs]]
[[Category:Generics{{#translation:}}]]
[[Category:Generics{{#translation:}}]]
[[Category:Components{{#translation:}}|Reference Option Description Driver`1]]
[[Category:Components{{#translation:}}|Reference Option Description Driver`1]]
[[Category:Generic Components{{#translation:}}|Reference Option Description Driver`1]]
[[Category:Components With Nested Types{{#translation:}}|Reference Option Description Driver`1]]
[[Category:Components:Common UI:Drivers{{#translation:}}|Reference Option Description Driver`1]]
[[Category:Components:Common UI:Drivers{{#translation:}}|Reference Option Description Driver`1]]

Latest revision as of 21:58, 12 September 2024

Component image 
Reference Option Description Driver`1 component as seen in the Scene Inspector

The Reference Option Description Driver component is used primarily to drive the parts that make up a Context Menu Item Source. This component along with ContextMenuItemSource is used in context menus for toggles where the toggle controls a reference like a slot or object.

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.
Reference direct RelayRef`1<SyncRef`1<T>> The reference field to compare against
ForceDeselected Bool Forces any context menu item source to change regardless if it is deselected.
Label field drive of String The string to set to the chosen label in the list of Options
Color field drive of ColorX The color to set to the chosen color in the list of Options
Sprite direct RefDrive`1<IAssetProvider`1<Sprite>> The Sprite to set to the chosen Sprite in the list of Options
DefaultOption direct Option<T> The option to set Label, Color, and Sprite to when Reference doesn't match any ReferenceTargets under the list of Options
Options list of Option<T> The list to search for a ReferenceTarget that matches Reference. once a match is found, the option's Label, Color, and Sprite is used to drive this section's drive targets of Label, Color, and Sprite.

Option

Fields
Name Type Description
ReferenceTarget SyncRef`1<T> The values below should be used if Reference is equal to this.
Label String The label to use if ReferenceTarget matches Reference
Color ColorX The color to use if ReferenceTarget matches Reference
Sprite IAssetProvider`1<Sprite> The sprite to use if ReferenceTarget matches Reference


Usage

This component can be more efficient than using a bunch of Reference Equality Drivers and generating a number based on such, or using ProtoFlux for a context menu.

Examples

This is useful for managing toggles where you want to switch things like music and drive the description based on which music asset you chose in your context menu.

Related Components