├── .gitattributes ├── .gitignore ├── .vs ├── BASICINVENTORYSYSTEM │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── FileContentIndex │ │ ├── 1769e354-a450-4925-9b16-1270a477f70a.vsidx │ │ ├── 8e68a721-5b3e-4e87-b38b-bfa2ac0e0765.vsidx │ │ ├── 93ef0013-6952-4430-82ba-4fb8a1f4e6fb.vsidx │ │ ├── a3c8b122-0c20-4e6f-8606-063cf0f8c425.vsidx │ │ └── e63da8e7-a265-4b56-a70f-04877ff056ef.vsidx │ ├── v16 │ │ └── .suo │ └── v17 │ │ ├── .futdcache.v2 │ │ ├── .suo │ │ └── DocumentLayout.json └── ProjectEvaluation │ ├── basicinventorysystem.metadata.v8.bin │ ├── basicinventorysystem.projects.v8.bin │ └── basicinventorysystem.strings.v8.bin ├── BasicInventorySystem.csproj ├── BasicInventorySystem.csproj.old ├── BasicInventorySystem.csproj.old.1 ├── BasicInventorySystem.sln ├── Inventory ├── InteractableItem.gd ├── InteractableItemMono.cs ├── InventoryHandler.gd ├── InventoryHandlerMono.cs ├── InventorySlot.gd ├── InventorySlot.tscn ├── InventorySlotMono.cs ├── ItemData.gd ├── ItemDataMono.cs ├── TestCube.tscn └── TestSphere.tscn ├── LICENSE.txt ├── Player ├── Interaction │ ├── PlayerInteractionHandler.gd │ └── PlayerInteractionHandlerMono.cs ├── PlayerController.gd ├── PlayerControllerMono.cs └── PlayerPrefab.tscn ├── README.md ├── Textures ├── BoxIcon.png ├── BoxIcon.png.import ├── SphereIcon.png └── SphereIcon.png.import ├── icon.svg ├── icon.svg.import ├── project.godot └── test_scene.tscn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/BASICINVENTORYSYSTEM/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/BASICINVENTORYSYSTEM/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/BASICINVENTORYSYSTEM/FileContentIndex/1769e354-a450-4925-9b16-1270a477f70a.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/BASICINVENTORYSYSTEM/FileContentIndex/1769e354-a450-4925-9b16-1270a477f70a.vsidx -------------------------------------------------------------------------------- /.vs/BASICINVENTORYSYSTEM/FileContentIndex/8e68a721-5b3e-4e87-b38b-bfa2ac0e0765.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/BASICINVENTORYSYSTEM/FileContentIndex/8e68a721-5b3e-4e87-b38b-bfa2ac0e0765.vsidx -------------------------------------------------------------------------------- /.vs/BASICINVENTORYSYSTEM/FileContentIndex/93ef0013-6952-4430-82ba-4fb8a1f4e6fb.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/BASICINVENTORYSYSTEM/FileContentIndex/93ef0013-6952-4430-82ba-4fb8a1f4e6fb.vsidx -------------------------------------------------------------------------------- /.vs/BASICINVENTORYSYSTEM/FileContentIndex/a3c8b122-0c20-4e6f-8606-063cf0f8c425.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/BASICINVENTORYSYSTEM/FileContentIndex/a3c8b122-0c20-4e6f-8606-063cf0f8c425.vsidx -------------------------------------------------------------------------------- /.vs/BASICINVENTORYSYSTEM/FileContentIndex/e63da8e7-a265-4b56-a70f-04877ff056ef.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/BASICINVENTORYSYSTEM/FileContentIndex/e63da8e7-a265-4b56-a70f-04877ff056ef.vsidx -------------------------------------------------------------------------------- /.vs/BASICINVENTORYSYSTEM/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/BASICINVENTORYSYSTEM/v16/.suo -------------------------------------------------------------------------------- /.vs/BASICINVENTORYSYSTEM/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/BASICINVENTORYSYSTEM/v17/.futdcache.v2 -------------------------------------------------------------------------------- /.vs/BASICINVENTORYSYSTEM/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/BASICINVENTORYSYSTEM/v17/.suo -------------------------------------------------------------------------------- /.vs/BASICINVENTORYSYSTEM/v17/DocumentLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/BASICINVENTORYSYSTEM/v17/DocumentLayout.json -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/basicinventorysystem.metadata.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/ProjectEvaluation/basicinventorysystem.metadata.v8.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/basicinventorysystem.projects.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/ProjectEvaluation/basicinventorysystem.projects.v8.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/basicinventorysystem.strings.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/.vs/ProjectEvaluation/basicinventorysystem.strings.v8.bin -------------------------------------------------------------------------------- /BasicInventorySystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/BasicInventorySystem.csproj -------------------------------------------------------------------------------- /BasicInventorySystem.csproj.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/BasicInventorySystem.csproj.old -------------------------------------------------------------------------------- /BasicInventorySystem.csproj.old.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/BasicInventorySystem.csproj.old.1 -------------------------------------------------------------------------------- /BasicInventorySystem.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/BasicInventorySystem.sln -------------------------------------------------------------------------------- /Inventory/InteractableItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/InteractableItem.gd -------------------------------------------------------------------------------- /Inventory/InteractableItemMono.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/InteractableItemMono.cs -------------------------------------------------------------------------------- /Inventory/InventoryHandler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/InventoryHandler.gd -------------------------------------------------------------------------------- /Inventory/InventoryHandlerMono.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/InventoryHandlerMono.cs -------------------------------------------------------------------------------- /Inventory/InventorySlot.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/InventorySlot.gd -------------------------------------------------------------------------------- /Inventory/InventorySlot.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/InventorySlot.tscn -------------------------------------------------------------------------------- /Inventory/InventorySlotMono.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/InventorySlotMono.cs -------------------------------------------------------------------------------- /Inventory/ItemData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/ItemData.gd -------------------------------------------------------------------------------- /Inventory/ItemDataMono.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/ItemDataMono.cs -------------------------------------------------------------------------------- /Inventory/TestCube.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/TestCube.tscn -------------------------------------------------------------------------------- /Inventory/TestSphere.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Inventory/TestSphere.tscn -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Player/Interaction/PlayerInteractionHandler.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Player/Interaction/PlayerInteractionHandler.gd -------------------------------------------------------------------------------- /Player/Interaction/PlayerInteractionHandlerMono.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Player/Interaction/PlayerInteractionHandlerMono.cs -------------------------------------------------------------------------------- /Player/PlayerController.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Player/PlayerController.gd -------------------------------------------------------------------------------- /Player/PlayerControllerMono.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Player/PlayerControllerMono.cs -------------------------------------------------------------------------------- /Player/PlayerPrefab.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Player/PlayerPrefab.tscn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/README.md -------------------------------------------------------------------------------- /Textures/BoxIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Textures/BoxIcon.png -------------------------------------------------------------------------------- /Textures/BoxIcon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Textures/BoxIcon.png.import -------------------------------------------------------------------------------- /Textures/SphereIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Textures/SphereIcon.png -------------------------------------------------------------------------------- /Textures/SphereIcon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/Textures/SphereIcon.png.import -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/project.godot -------------------------------------------------------------------------------- /test_scene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkahe/Basic-Inventory-System-Godot4/HEAD/test_scene.tscn --------------------------------------------------------------------------------