コード例 #1
0
ファイル: AMTakeExport.cs プロジェクト: igrir/MateAnimator
 void OnEnable()
 {
     window = this;
     #if UNITY_5
     titleContent = new GUIContent("Export Take" + (take == null ? "s" : ""));
     #else
     title = "Export Take" + (take == null ? "s" : "");
     #endif
     minSize = new Vector2(190f, 120f);
 }
コード例 #2
0
ファイル: AMTakeExport.cs プロジェクト: igrir/MateAnimator
 void OnDisable()
 {
     window = null;
 }