Ejemplo n.º 1
0
    void OnEnable()
    {
        window       = this;
        this.title   = "Export Take" + (take == null ? "s" : "");
        this.minSize = new Vector2(190f, 120f);

        oData = AMOptionsFile.loadFile();
    }
Ejemplo n.º 2
0
    void OnEnable()
    {
        window = this;
        this.title = "Export Take" + (take == null ? "s" : "");
        this.minSize = new Vector2(190f,120f);

        oData = AMOptionsFile.loadFile();
    }
Ejemplo n.º 3
0
 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);
 }
Ejemplo n.º 4
0
 void OnDisable()
 {
     window = null;
 }
Ejemplo n.º 5
0
 void OnDisable()
 {
     window = null;
 }