Ejemplo n.º 1
0
        void OnEnable()
        {
            InitWindow();
            WelcomeWindow.SpawnOnFreshInstall();
#if RIDEMO
            DemoRestriction.OnEnable();
#endif// RIDEMO
        }
Ejemplo n.º 2
0
        internal static void Create()
        {
            var menu = new GenericMenu();

            menu.AddItem(new GUIContent("Settings"), false, () => Selection.activeObject = Settings.Instance);
            menu.AddItem(new GUIContent("Skin"), false, () => Selection.activeObject     = SkinManager.GetSkin());
            menu.AddItem(new GUIContent("Info + Addons"), false, () => WelcomeWindow.SpawnWindow());
#if RIDEMO
            menu.AddItem(new GUIContent("Buy RI"), false, () => UnityEditorInternal.AssetStore.Open(ProjectSettings.StoreDemoURL));
#endif
            menu.ShowAsContext();
        }