Version: 2021.1
言語: 日本語
public void SetTiles (Vector3Int[] positionArray, TileBase[] tileArray);

パラメーター

positionArray An array of positions of Tiles on the Tilemap.
tileArray An array of Tiles to be placed.

説明

Sets an array of Tiles at the given XYZ coordinates of the corresponding cells in the Tilemap.

Refer to Scriptable Tiles and Tilemap for more information.

// Fills Tilemap area with checkerboard pattern of tileA and tileB
using UnityEngine;
using UnityEngine.Tilemaps;

public class ExampleClass : MonoBehaviour { public TileBase tileA; public TileBase tileB; public Vector2Int size;

void Start() { Vector3Int[] positions = new Vector3Int[size.x * size.y]; TileBase[] tileArray = new TileBase[positions.Length];

for (int index = 0; index < positions.Length; index++) { positions[index] = new Vector3Int(index % size.x, index / size.y, 0); tileArray[index] = index % 2 == 0 ? tileA : tileB; }

Tilemap tilemap = GetComponent<Tilemap>(); tilemap.SetTiles(positions, tileArray); } }