void OnEnable() { window = this; this.title = "Export Take" + (take == null ? "s" : ""); this.minSize = new Vector2(190f, 120f); oData = AMOptionsFile.loadFile(); }
void OnEnable() { window = this; this.title = "Export Take" + (take == null ? "s" : ""); this.minSize = new Vector2(190f,120f); oData = AMOptionsFile.loadFile(); }
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); }
void OnDisable() { window = null; }