فهرست منبع

Changes to the interface

Supports the engine methods.
Raanan Weber 10 سال پیش
والد
کامیت
b4649486b9
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      src/Tools/babylon.loadingScreen.ts

+ 4 - 0
src/Tools/babylon.loadingScreen.ts

@@ -3,6 +3,10 @@ module BABYLON {
 	export interface ILoadingScreen {
 		displayLoadingUI : () => void;
 		hideLoadingUI : () => void;
+        //default loader support
+        loadingUIBackgroundColor : string;
+        loadingUIText : string;
+                
 	}
 	
 	export class DefaultLoadingScreen implements ILoadingScreen {