Version: 2021.3

Tilemap.SetTransformMatrix

切换到手册
public void SetTransformMatrix (Vector3Int position, Matrix4x4 transform);

参数

position 瓦片在 Tilemap 上的位置。
transform 变换矩阵。

描述

Sets the transform matrix of a Tile given the XYZ coordinates of a cell in the Tilemap.

Note that if the Tile has set TileFlags.LockTransform, then this matrix has no effect.

// Rotate the tile in (0,0,0) 90 degrees
using UnityEngine;
using UnityEngine.Tilemaps;

public class ExampleClass : MonoBehaviour { void Start() { Tilemap tilemap = GetComponent<Tilemap>(); Matrix4x4 matrix = Matrix4x4.TRS(Vector3.zero, Quaternion.Euler(0f, 0f, 90f), Vector3.one); tilemap.SetTransformMatrix(new Vector3Int(0, 0, 0), matrix); } }

请参阅可编程瓦片瓦片地图以了解更多信息。