├── LICENSE ├── README.md ├── _config.yml ├── default_env.tres ├── entities ├── enemy.gd ├── enemy.tscn ├── godoty.tscn ├── player.gd ├── player.tscn ├── pos2D.tscn ├── rigid.tscn ├── teleport.gd └── teleport.tscn ├── hud ├── interface.tscn └── interface_slot.gd ├── icon.png ├── icon.png.import ├── img ├── simple.png └── simple.png.import ├── levels ├── blue.tscn ├── green.tscn └── red.tscn ├── project.godot └── scripts ├── globals.gd ├── globals.tscn ├── level_root.gd ├── save_load.gd └── save_load.tscn /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/_config.yml -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/default_env.tres -------------------------------------------------------------------------------- /entities/enemy.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/entities/enemy.gd -------------------------------------------------------------------------------- /entities/enemy.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/entities/enemy.tscn -------------------------------------------------------------------------------- /entities/godoty.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/entities/godoty.tscn -------------------------------------------------------------------------------- /entities/player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/entities/player.gd -------------------------------------------------------------------------------- /entities/player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/entities/player.tscn -------------------------------------------------------------------------------- /entities/pos2D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/entities/pos2D.tscn -------------------------------------------------------------------------------- /entities/rigid.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/entities/rigid.tscn -------------------------------------------------------------------------------- /entities/teleport.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/entities/teleport.gd -------------------------------------------------------------------------------- /entities/teleport.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/entities/teleport.tscn -------------------------------------------------------------------------------- /hud/interface.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/hud/interface.tscn -------------------------------------------------------------------------------- /hud/interface_slot.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/hud/interface_slot.gd -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/icon.png.import -------------------------------------------------------------------------------- /img/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/img/simple.png -------------------------------------------------------------------------------- /img/simple.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/img/simple.png.import -------------------------------------------------------------------------------- /levels/blue.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/levels/blue.tscn -------------------------------------------------------------------------------- /levels/green.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/levels/green.tscn -------------------------------------------------------------------------------- /levels/red.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/levels/red.tscn -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/project.godot -------------------------------------------------------------------------------- /scripts/globals.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/scripts/globals.gd -------------------------------------------------------------------------------- /scripts/globals.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/scripts/globals.tscn -------------------------------------------------------------------------------- /scripts/level_root.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/scripts/level_root.gd -------------------------------------------------------------------------------- /scripts/save_load.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/scripts/save_load.gd -------------------------------------------------------------------------------- /scripts/save_load.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdmtt/Godot-3.1-Advanced-Save-System/HEAD/scripts/save_load.tscn --------------------------------------------------------------------------------