Custom loading animation
I notice the loading animation is the same every time so maybe like a custom loading screen, it doesn't have to be crazy either just something to mix things up
I notice the loading animation is the same every time so maybe like a custom loading screen, it doesn't have to be crazy either just something to mix things up
Here it is explained why there is a progress bar.
https://microstudio.dev/community/help/preloader-screen/378/
When you use a graphics library other than the standard one, this progress bar does not appear.
There is also a system.loading
variable - but it is always set to 100 once your program is running.
An option would be needed in the MicroStudio configuration - this project loads the graphics itself.
When starting the program, you would load the graphics yourself and create a preloading Screen.
If you want to load everything yourself, add the graphics to the Assets category.
Assets are loaded on demand.
Ok I'll keep this in mind, thank you for answering my question
After uploading to HTML5, in the 'microengine.js' file see these lines:
798 this.screen.drawRect(0, 0, 100, 10, "#DDD");
800 this.screen.fillRect(-(1 - progress) * 48, 0, progress * 96, 6, "#DDD");
This is a loading indicator, you can try to work with it.