Explorar el Código

Removed reference to deprecated property

"title" property of Unity editor window is deprecated so we replace with
"titleContent.text"
punkoffice hace 10 años
padre
commit
e6aa2e34a9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Exporters/Unity 5/Unity3D2Babylon/ExporterWindow.cs

+ 1 - 1
Exporters/Unity 5/Unity3D2Babylon/ExporterWindow.cs

@@ -40,7 +40,7 @@ namespace Unity3D2Babylon
 
         void Initialize()
         {
-            title = "Babylon.js";
+            titleContent.text = "Babylon.js";
         }
 
         void OnGUI()