Component:CallbackRefArgument: Difference between revisions

From Resonite Wiki
Automated: update Fields, Categories
add info for this
Line 7: Line 7:
|Name=Callback Ref Argument
|Name=Callback Ref Argument
}}
}}
Similar to [[Component:CallbackValueArgument|CallbackValueArgument]] but instead of a value it's a reference for an action.
There are some [[Sync Delegate|Sync Delegates]] in the game that match this component's requirements, but not many.


<!--T:2-->
<!--T:2-->
== Fields ==
== Fields ==
{{Table ComponentFields
{{Table ComponentFields
|Reference|'''A'''|TypeAdv0=true|
|Reference|'''A'''|TypeAdv0=true| The reference to give <code>Callback</code> when <code>Call()</code> or <code>CallAndDestroy()</code> is called.
|Callback|{{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]&lt;A&gt;}}|TypeAdv1=true|
|Callback|{{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]&lt;A&gt;}}|TypeAdv1=true| The [[Sync Delegate]] to call and provide <code>Reference</code> to.
}}
}}


Line 20: Line 23:
<!--T:4-->
<!--T:4-->
== Examples ==
== Examples ==
Can be used to call a {{RootFieldType|SyncDelegate`1|[[Type:Action`1|Action`1]]&lt;T&gt;}} (an action that takes a reference type) and give it <code>Reference</code> as an argument.


<!--T:5-->
<!--T:5-->
== Related Components ==
== Related Components ==
</translate>
</translate>
[[Category:ComponentStubs]]
[[Category:Generics{{#translation:}}]]
[[Category:Generics{{#translation:}}]]
[[Category:Components{{#translation:}}|Callback Ref Argument`1]]
[[Category:Components{{#translation:}}|Callback Ref Argument`1]]
[[Category:Generic Components{{#translation:}}|Callback Ref Argument`1]]
[[Category:Generic Components{{#translation:}}|Callback Ref Argument`1]]
[[Category:Components:Uncategorized{{#translation:}}|Callback Ref Argument`1]]
[[Category:Components:Uncategorized{{#translation:}}|Callback Ref Argument`1]]

Revision as of 19:18, 19 October 2024


This article or section is a Stub. You can help the Resonite Wiki by expanding it.


Component image 
Callback Ref Argument component as seen in the Scene Inspector

Similar to CallbackValueArgument but instead of a value it's a reference for an action.

There are some Sync Delegates in the game that match this component's requirements, but not many.

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 A The reference to give Callback when Call() or CallAndDestroy() is called.
Callback Action`1<A> The Sync Delegate to call and provide Reference to.

Usage

Examples

Can be used to call a Action`1<T> (an action that takes a reference type) and give it Reference as an argument.

Related Components