Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#

Matrix4x4.zero

public static Matrix4x4 zero;

Description

Returns a matrix with all elements set to zero (Read Only).

using UnityEngine;

public class ExampleScript : MonoBehaviour { // Constructs a Matrix4x4 with all elements set to 0 Matrix4x4 matrix = Matrix4x4.zero;

void Start() { Debug.Log(matrix); } }

See Also: identity variable.

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