Client Property Template: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "{{ClientSide}} This is an example description for a client-side property template. == Syntax == <syntaxhighlight lang="javascript"> example.prop = str; </syntaxhighlight>...")
 
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 5: Line 5:
== Syntax ==
== Syntax ==


<syntaxhighlight lang="javascript">
<pre>
example.prop = str;
example.prop = str;
</syntaxhighlight>
</pre>


=== Attribute Types ===
=== Attribute Types ===
Line 17: Line 17:
This is a basic explanation about what does the example below do.
This is a basic explanation about what does the example below do.


<syntaxhighlight lang="javascript">
{{ClientsideCode|
<pre>
//Getter Type
//Getter Type
let val = example.prop;
let val = example.prop;
Line 23: Line 24:
//Setter Type
//Setter Type
example.prop = "Example String";
example.prop = "Example String";
</syntaxhighlight>
</pre>
}}


== See Also ==
== See Also ==


* [[Example::Stuff|Example Stuff]]
* [[Example::Stuff|Example Stuff]]
[[Category:Clientside API]]

Latest revision as of 14:09, 26 October 2018

Client-Side

This is an example description for a client-side property template.

Syntax

example.prop = str;

Attribute Types

  • Getter: Explanation of getter type, output should be in string type.
  • Setter: Explanation of setter type, input should be in string type.

Examples

This is a basic explanation about what does the example below do.

Client-Side
//Getter Type
let val = example.prop;

//Setter Type
example.prop = "Example String";

See Also