Flexible save system
KROIA-Productions
$0.0
Date |
Price |
---|---|
日期和时间 |
价钱($) |
06/30(2022) |
0.0 |
11/17(2024) |
0.0 |
Jump AssetStore
- Save Gameobjects and their data.
- Save reference to ScriptableObjects or other GameObjects
- Respawn objects using the save file.
- Reload data using the save file.Currently saved saves may be incompatible after updating to this Version.No data will be lost but the variable which determens if the Transform data shuld be saved will be false because it didn't exist in the older version and therefore each GameObject which is loaded from a older SaveSystem version than 01.02.00 will not apply the saved Transform. The flexible save system is a easy to use implementation to store runtime data for different GameObjects.You can save and load at runtime, deleted objects will get back spawned if they were saved and exist as prefab.You can save any serializable struct of data for each object.You can save objects which are prefab based to let them respawn automaticly when the get loaded back in the game.You can save nasted objects.You can save the data of non prefab objects, but its not possible to spawn them back when they got deleted at runtime. Only the data will feed back to them when the save gets loaded.Position, rotation and scale of savable objects will get saved automatically. (Can be turned on and off via code or Inspector)You can create scriptableObjects with an ID to save the reference to them. Usecases:ItemTypes which shuld be stored in a Inventory.Configuration of Objects, e.g. Crafting Recipe for machines.The use is described in the demo scenes.For a detail description see: Flexible save system\Documentation\Flexible save system.pdf