Tile - Array - Set – Ylands

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with " ---- {{Ylands scripting navbox}}")
 
No edit summary
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<!---
THIS PAGE WAS GENERATED AUTOMATICALLY; DO NOT EDIT IT, OTHERWISE YOUR CHANGES WILL BE LOST DURING FUTURE UPDATE.
-->
== Set(Array, Index, Value) ==
[[File:YlandsTile-190.png]]
<pre>setItem(index: number, value: T): void;</pre>
=== Parameters ===
==== index ====
Index of the target cell in the array
==== value ====
Target value.
=== Availability ===
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|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) ==
[[File:YlandsTile-765.png]]
<pre>setItem(index: number, value: T[]): void;</pre>
=== Parameters ===
==== index ====
Index of the target cell in the array.
==== value ====
=== Availability ===
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|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.




----
----
{{Ylands scripting navbox}}
{{Navbox/Ylands}}
{{DEFAULTSORT:{{#sub:{{PAGENAME}}|14}}}}
 
[[Category: Instructions]]

Revision as of 12:17, 12 November 2021

Set(Array, Index, Value)

YlandsTile-190.png

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)

YlandsTile-765.png

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.