I am wondering which is better for my game either to load all the assets only once on a game splash screen for example or loading and disposing the assets of each screen separately ?
Related Questions in LIBGDX
- Lib GDX exported jar file does not detect assets
- LibGDX Normal Textures Not Showing Up in 3D (Blender) Model Java
- How do I resolve this rendering error with LibGDX and a Shadertoy GLSL Shader?
- Multiple TiledMap layers not rendering
- How to retain score when transitioning between Pause Scene to Game Scene?
- How to convert a text drawn using BitmapFont in LibGDX in an array of Sprites/TextureMapObjects?
- LibGDX Crashing when removing entity from its list
- How to change `Vector2` 's values in the virtual `render(delta:Float)` method of the Screen interface of com.badlogic.Gdx
- error build java project in vscodeThe project was not built due to "core does not exist". The project was not built due to "desktop does not exist"
- iOS app/game crashes with scene update failed message after launching using Libgdx and robovm
- Not able to catch errors in websocket onMessage
- Simple MMORPG - which protocol, technologies
- task superDev gives an error. Below is the result of stacktrace
- how can I fix this error? Libgdx and Gradle
- libGDX JSON File Reading Error: Unable to Load Skin Resources
Related Questions in ASSET-MANAGEMENT
- Dashboard to pull data from different databases and data sources
- React Native Expo App: Local Images Not Displaying Despite Correct Paths and Styles
- Webpack5 not resolving asset import: import PngFile from "./src/assets/[filename].png"
- Asset not found error in Expo CLI for Android platform and images not working
- TypeError for get_nasdaq_symbols()
- How do I get Snipe-IT API to retrieve data using a Google App Script and populate it on a Google Sheet?
- What is a good sample project to get into Digital Twin
- SnipeIt using Docker Compose
- libGdx: Can't load assets from JUnit test class
- HtmlWebpackPlugin - inject js in body at a specifc place
- Webpack 4 - generate responsive images
- Aggregate Overlapping Segments to Measure Effective Length
- Managing Bitmap Font assets in LibGdx
- Asset for multiple views in Yii2
- Reloading Assets after android app has been paused
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Answer of your question is totally opinion based.
Load all the assets only once and dispose when you exit your game.
Load and dispose assets of each screen, depending upon used/unused resource.
In my opinion you should choose these option depending upon size of game in terms of resources.
If your game using few resources you should load all resources for all screen at starting with the help of SplashScreen and dispose when you exit your game.
If your game have lots of resources like consider, your game is combination of three-match game and farming game. Both game type required lots or resources so you must unload unused resources of previous screen and load resource for new screen.