mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
20 lines
579 B
JavaScript
20 lines
579 B
JavaScript
/*
|
|
* GDevelop JS Platform
|
|
* Copyright 2013-2016 Florian Rival (Florian.Rival@gmail.com). All rights reserved.
|
|
* This project is released under the MIT License.
|
|
*/
|
|
|
|
gdjs.LoadingScreenCocosRenderer = function(runtimeGamePixiRenderer, loadingScreenSetup)
|
|
{
|
|
}
|
|
|
|
gdjs.LoadingScreenRenderer = gdjs.LoadingScreenCocosRenderer; //Register the class to let the engine use it.
|
|
|
|
gdjs.LoadingScreenCocosRenderer.prototype.render = function(percent) {
|
|
console.log("Loading " + percent + "%");
|
|
};
|
|
|
|
gdjs.LoadingScreenCocosRenderer.prototype.unload = function() {
|
|
// Nothing to do
|
|
};
|