Exemplo n.º 1
0
    static void InitWithoutScriptEnable()
    {
        instance = (TBE_UpgradeWindow)EditorWindow.GetWindow(typeof(TBE_UpgradeWindow));
        instance.Show();
        instance.titleContent = new GUIContent("Upgrade");
        instance.minSize      = windowSize;

        instance.bUpgradable = File.Exists("Assets/TBE_3Dception/Core/TBE_3DCore.dll");
    }
Exemplo n.º 2
0
	static void InitWithoutScriptEnable () 
	{	
		instance = (TBE_UpgradeWindow) EditorWindow.GetWindow (typeof(TBE_UpgradeWindow));
		instance.Show ();
		instance.titleContent = new GUIContent("Upgrade");
		instance.minSize = windowSize;
		
		instance.bUpgradable = File.Exists ("Assets/TBE_3Dception/Core/TBE_3DCore.dll");
	}
Exemplo n.º 3
0
 void OnDestroy()
 {
     instance = null;
 }
Exemplo n.º 4
0
	void OnDestroy()
	{
		instance = null;
	}