Exemplo n.º 1
0
    void Awake()
    {
        DontDestroyOnLoad(this);
        this.transform.parent = null;

        shipConfigurationManagerWindow = new Window(new Rect(Screen.width / 2 - 512, Screen.height / 2 - 384, 1024, 768), this.GetInstanceID(), "SHIP CONFIGURATION MANAGER");
        shipConfigurationManagerWindow.AddTab(DrawShipConfigurationManager, "SHIPS");

        SaveShipConfigurations saveConfigs = new SaveShipConfigurations();
        saveConfigs.Load(this);
    }