Tile - Array - Get – Ylands
Jump to navigation
Jump to search
(Created page with "<!--- THIS PAGE WAS GENERATED AUTOMATICALLY; DO NOT EDIT IT, OTHERWISE YOUR CHANGES WILL BE LOST DURING FUTURE UPDATE. --> == Get(Array, Index) == File:YlandsTile-189.png...") |
Lou Montana (talk | contribs) m (Text replacement - "{{DEFAULTSORT:{{#sub:{{PAGENAME}}|14}}}}" to "{{DEFAULTSORT:{{#sub:{{PAGENAME}}|7}}}}") |
||
(One intermediate revision by one other user not shown) | |||
Line 16: | Line 16: | ||
'''any''' Returns a value at given position in the array. | '''any''' Returns a value at given position in the array. | ||
=== Availability === | |||
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]] | |||
=== Description === | === Description === | ||
Returns a value | Returns a value of the given position in the array. | ||
=== Notes === | === Notes === | ||
Line 40: | Line 44: | ||
'''any[]''' | '''any[]''' | ||
=== Availability === | |||
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]] | |||
=== Description === | === Description === | ||
Line 53: | Line 61: | ||
---- | ---- | ||
{{Navbox/Ylands}} | {{Navbox/Ylands}} | ||
{{DEFAULTSORT:{{#sub:{{PAGENAME}}| | {{DEFAULTSORT:{{#sub:{{PAGENAME}}|7}}}} | ||
[[Category: Instructions]] | [[Category: Instructions]] |
Latest revision as of 14:24, 24 November 2023
Get(Array, Index)
getItem(index: number): T;
Parameters
index
Index of the target cell in the array.
Returns
any Returns a value at given position in the array.
Availability
Client, Server, Custom Controller
Description
Returns a value of the given position in the array.
Notes
- Values in the cells of one array do not have to be of the same type (i.e string, vector, number).
- Index numbers always start from 0, e.g: Array of length 3 has indexes 0, 1 and 2.
Get(Array, Index)
getItem(index: number): T[];
Parameters
index
Index of the target cell in the array.
Returns
any[]
Availability
Client, Server, Custom Controller
Description
Returns a value at given position in the array.
Notes
- Values in the cells of one array do not have to be of the same type (i.e string, vector, number).
- Index numbers always start from 0, e.g: Array of length of 3 has indexes 0, 1, 2.