matrix
Matrix for all handle operations. This is used by functions in HandleUtility and Handles to transform controls.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Property
- Namespace: UnityEditor
- Assembly: UnityEditor.CoreModule
public static Matrix4x4 matrix { get; set; }
Remarks
To make all Handle routines work in the local coordinate space of a GameObject, set this to Transform.localToWorldMatrix.
The handles matrix is reset to identity at the end of every frame. It is considered best practice to store and restore the state of this matrix during use. See Handles.DrawingScope for a convenient means of preserving handle global state.