Legacy Documentation: Version 2017.2 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Tilemap.SetTransformMatrix

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public method SetTransformMatrix(position: Vector3Int, transform: Matrix4x4): void;
public void SetTransformMatrix(Vector3Int position, Matrix4x4 transform);

Parameters

position Position of the Tile on the Tilemap.
transform The transform matrix.

Description

Sets the transform matrix of a tile given the XYZ coordinates of a cell in the tile map.

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

no example available in JavaScript
// 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); } }

Did you find this page useful? Please give it a rating: