- Joined
- Nov 29, 2020
- Messages
- 26
- Reaction score
- 10
- First Language
- Hindi
- Primarily Uses
- RMMZ
I have seen a few threads on how to replace/edit the default loader in RMV and else but no luck with RMZ.
I have found that this time it's CSS instead of a GIF or APNG, so basically what is the right way to replace that with an apng? or is that not ideal and I should code a custom CSS loader?
SOLUTION: by @caethyril
I have found that this time it's CSS instead of a GIF or APNG, so basically what is the right way to replace that with an apng? or is that not ideal and I should code a custom CSS loader?
SOLUTION: by @caethyril
Put the animate image in your game folder (in this case we put it in img/system)
Locate and open
Search and locate the following lines of code and do the following edits:
Feel free to mess around with the CSS more to get your own desired effect
Locate and open
game.css
file in your "css" folderSearch and locate the following lines of code and do the following edits:
CSS:
#loadingSpinnerImage {
margin: 0px;
padding: 0px;
/* Change the dimensions based your own image /*
width: 320px;
height: 228px;
/* Change the path below, wherever you put your own image /*
background-image: url('../img/system/loading.gif');
}
Feel free to mess around with the CSS more to get your own desired effect
Last edited: