Browse Source

Changes to the interface

Supports the engine methods.
Raanan Weber 10 years ago
parent
commit
b4649486b9
1 changed files with 4 additions and 0 deletions
  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 {