Component:SliderMemberEditor: Difference between revisions

From Resonite Wiki
Automated: create new component page
 
add info
 
Line 3: Line 3:
|Name=Slider Member Editor
|Name=Slider Member Editor
}}
}}
{{stub}}
The '''SliderMemberEditor''' is commonly used in inspectors and can be used for [[Ref hacking]].


== Usage ==
== Fields ==
{{Table ComponentFields
{{Table ComponentFields
|Continuous|Bool|
|Continuous|Bool| Whether slider values should be constantly changed every frame update.
|_path|String|
|_path|String| The value underneath the target element to change. path elements are separated by ".".
|_target|{{RootFieldType|RelayRef`1|[[Type:IField|IField]]}}|TypeAdv2=true|
|_target|{{RootFieldType|RelayRef`1|[[Type:IField|IField]]}}|TypeAdv2=true| The target field to change.
|_slider|'''[[Component:Slider`1|Slider`1]]<[[Type:Float|Float]]>'''|TypeAdv3=true|
|_slider|'''[[Component:Slider`1|Slider`1]]&lt;[[Type:Float|Float]]&gt;'''|TypeAdv3=true| The slider to trigger change events this component should use to influence <code>_target</code>
|_sliderValue|{{RootFieldType|FieldDrive`1|[[Type:Float|Float]]}}|TypeAdv4=true|
|_sliderValue|{{RootFieldType|FieldDrive`1|[[Type:Float|Float]]}}|TypeAdv4=true| The value to be used for changing <code>_target</code>
|_textEditor|'''[[Component:PrimitiveMemberEditor|PrimitiveMemberEditor]]'''|TypeAdv5=true|
|_textEditor|'''[[Component:PrimitiveMemberEditor|PrimitiveMemberEditor]]'''|TypeAdv5=true| The text editor to change <code>_target</code> as a number text field.
}}
}}


== Behavior ==
== Usage ==


== Examples ==
== Examples ==


== See Also ==
== See Also ==
* [[Component:Slider]]


[[Category:Components:Uncategorized{{#translation:}}|Slider Member Editor]]
[[Category:Components:Uncategorized{{#translation:}}|Slider Member Editor]]
[[Category:Components{{#translation:}}|Slider Member Editor]]
[[Category:Components{{#translation:}}|Slider Member Editor]]
[[Category:ComponentStubs]]

Latest revision as of 23:42, 2 August 2025

Component image 
Slider Member Editor component as seen in the Scene Inspector

The SliderMemberEditor is commonly used in inspectors and can be used for Ref hacking.

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. Some components stop their functionality when this field is disabled, but some don't.
Continuous Bool Whether slider values should be constantly changed every frame update.
_path String The value underneath the target element to change. path elements are separated by ".".
_target direct RelayRef`1<IField> The target field to change.
_slider Slider`1<Float> The slider to trigger change events this component should use to influence _target
_sliderValue field drive of Float The value to be used for changing _target
_textEditor PrimitiveMemberEditor The text editor to change _target as a number text field.

Usage

Examples

See Also