Tile - Array - Set – Ylands
Jump to navigation
Jump to search
No edit summary |
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 11: | Line 11: | ||
==== index ==== | ==== index ==== | ||
Index of the target cell in the array | Index of the target cell in the array | ||
==== value ==== | ==== value ==== | ||
Target value. | Target value. | ||
=== Availability === | |||
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]] | |||
=== Description === | === Description === | ||
Allows to set value of the given position in the array. | |||
=== Notes === | === Notes === | ||
Line 38: | Line 42: | ||
==== value ==== | ==== value ==== | ||
=== Availability === | |||
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]] | |||
=== Description === | === Description === | ||
Line 51: | Line 59: | ||
---- | ---- | ||
{{Navbox/Ylands}} | {{Navbox/Ylands}} | ||
{{DEFAULTSORT:{{#sub:{{PAGENAME}}| | {{DEFAULTSORT:{{#sub:{{PAGENAME}}|7}}}} | ||
[[Category: Instructions]] | [[Category: Instructions]] |
Latest revision as of 14:24, 24 November 2023
Set(Array, Index, Value)
setItem(index: number, value: T): void;
Parameters
index
Index of the target cell in the array
value
Target value.
Availability
Client, Server, Custom Controller
Description
Allows to set 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.
Set(Array, Index, Value)
setItem(index: number, value: T[]): void;
Parameters
index
Index of the target cell in the array.
value
Availability
Client, Server, Custom Controller
Description
Set a value to 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 of 3 has indexes 0, 1, 2.