├── .gitignore ├── CharacterPanel.gd ├── DraggableBar.gd ├── Global.gd ├── Icon.png ├── Inventory.gd ├── Inventory.tscn ├── Item.gd ├── ItemSlot.gd ├── LICENSE ├── README.md ├── Tooltip.gd ├── images ├── A_Armor05.png ├── A_Armour02.png ├── A_Shoes03.png ├── Ac_Necklace03.png ├── Ac_Ring05.png ├── C_Elm03.png ├── E_Wood02.png ├── W_Sword001.png └── tooltip.png └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/.gitignore -------------------------------------------------------------------------------- /CharacterPanel.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/CharacterPanel.gd -------------------------------------------------------------------------------- /DraggableBar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/DraggableBar.gd -------------------------------------------------------------------------------- /Global.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/Global.gd -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/Icon.png -------------------------------------------------------------------------------- /Inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/Inventory.gd -------------------------------------------------------------------------------- /Inventory.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/Inventory.tscn -------------------------------------------------------------------------------- /Item.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/Item.gd -------------------------------------------------------------------------------- /ItemSlot.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/ItemSlot.gd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/README.md -------------------------------------------------------------------------------- /Tooltip.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/Tooltip.gd -------------------------------------------------------------------------------- /images/A_Armor05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/images/A_Armor05.png -------------------------------------------------------------------------------- /images/A_Armour02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/images/A_Armour02.png -------------------------------------------------------------------------------- /images/A_Shoes03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/images/A_Shoes03.png -------------------------------------------------------------------------------- /images/Ac_Necklace03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/images/Ac_Necklace03.png -------------------------------------------------------------------------------- /images/Ac_Ring05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/images/Ac_Ring05.png -------------------------------------------------------------------------------- /images/C_Elm03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/images/C_Elm03.png -------------------------------------------------------------------------------- /images/E_Wood02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/images/E_Wood02.png -------------------------------------------------------------------------------- /images/W_Sword001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/images/W_Sword001.png -------------------------------------------------------------------------------- /images/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/images/tooltip.png -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oen44/Godot-Inventory/HEAD/project.godot --------------------------------------------------------------------------------