Exemplo n.º 1
0
        void OnEnable()
        {
            PlayerPrefs.SetString("Desktopia/Version", version);

            modulesUpdate = new HashSet <Action>();

            Windows.GetMain();

            if (inputs)
            {
                Inputs.Initialize(this);
            }
            if (cursor)
            {
                Cursor.Initialize(this);
            }
            if (windows)
            {
                Windows.Initialize(this);
            }
            if (colliders)
            {
                Colliders.Initialize(this, collider);
            }
            if (dragDrop)
            {
                Files.DragDrop.Enable();
            }

            Windows.Main.SetTransparent(transparent);
            Windows.Main.SetTopMost(topMost);
            Windows.Main.SetClickThrough(clickThrough);
        }
Exemplo n.º 2
0
        void OnEnable()
        {
            PlayerPrefs.SetString("Desktopia/Version", version);

            modulesUpdate = new HashSet <Action>();

            Windows.GetMain();

            if (inputs)
            {
                Inputs.Initialize(this);
            }
            if (cursor)
            {
                Cursor.Initialize(this);
            }
            if (windows)
            {
                Windows.Initialize(this);
            }
            if (colliders)
            {
                Colliders.Initialize(this, collider);
            }
            if (dragDrop)
            {
                Files.DragDrop.Enable();
            }

            #if UNITY_EDITOR
            if (transparent)
            {
                UnityEngine.Debug.LogWarning("[Desktopia/Core] 'Transparent' modifier on main window skipped because running in editor.");
            }
            if (topMost)
            {
                UnityEngine.Debug.LogWarning("[Desktopia/Core] 'Top Most' modifier on main window skipped because running in editor.");
            }
            if (clickThrough)
            {
                UnityEngine.Debug.LogWarning("[Desktopia/Core] 'Click Through' modifier on main window skipped because running in editor.");
            }
            #else
            Windows.Main.SetTransparent(transparent);
            Windows.Main.SetTopMost(topMost);
            Windows.Main.SetClickThrough(clickThrough);
            #endif
        }