GUI
.matrix
Manual
Reference
Scripting
Scripting
>
Runtime Classes
>
GUI
GUI
.matrix
Menu
Overview
Runtime Classes
Attributes
Enumerations
Editor Classes
Enumerations
History
Index
GUI
All Members
Constructors
GUI
Class Variables
backgroundColor
changed
color
contentColor
depth
enabled
matrix
skin
tooltip
Class Functions
BeginGroup
BeginScrollView
Box
BringWindowToBack
BringWindowToFront
Button
DragWindow
DrawTexture
EndGroup
EndScrollView
FocusControl
FocusWindow
GetNameOfFocusedControl
HorizontalScrollbar
HorizontalSlider
Label
PasswordField
RepeatButton
ScrollTo
SelectionGrid
SetNextControlName
TextArea
TextField
Toggle
Toolbar
UnfocusWindow
VerticalScrollbar
VerticalSlider
Window
static
var
matrix :
Matrix4x4
Description
The GUI transform matrix.
JavaScripts
JavaScript
C#
Boo
print (
GUI.matrix
);
using UnityEngine;
using System.Collections;
public
class
example :
MonoBehaviour
{
void
Awake
() {
print(
GUI.matrix
);
}
}
import
UnityEngine
import
System.Collections
class
example(
MonoBehaviour
):
def
Awake
():
print(
GUI.matrix
)