├── .editorconfig ├── .gitattributes ├── .gitignore ├── GBIS_demos ├── 1_simple_inventory │ ├── simple_inventory.gd │ ├── simple_inventory.gd.uid │ └── simple_inventory.tscn ├── 2_equipment_slot │ ├── equipment_slot.gd │ ├── equipment_slot.gd.uid │ └── equipment_slot.tscn ├── 3_shop │ ├── shop.gd │ ├── shop.gd.uid │ └── shop.tscn ├── 4_change_data_source │ ├── change_data_source.gd │ ├── change_data_source.gd.uid │ └── change_data_source.tscn ├── assets │ ├── screenshots │ │ ├── GBIS架构.drawio.png │ │ ├── GBIS架构.drawio.png.import │ │ ├── Snipaste_2025-07-06_16-32-34.png │ │ ├── Snipaste_2025-07-06_16-32-34.png.import │ │ ├── Snipaste_2025-07-06_16-33-31.png │ │ ├── Snipaste_2025-07-06_16-33-31.png.import │ │ ├── Snipaste_2025-07-06_16-33-52.png │ │ └── Snipaste_2025-07-06_16-33-52.png.import │ ├── test_item_icons │ │ ├── armor.png │ │ ├── armor.png.import │ │ ├── boots.png │ │ ├── boots.png.import │ │ ├── bottle.png │ │ ├── bottle.png.import │ │ ├── jewel.png │ │ ├── jewel.png.import │ │ ├── sword.png │ │ └── sword.png.import │ └── ui │ │ ├── armor_background.png │ │ ├── armor_background.png.import │ │ ├── boots_background.png │ │ ├── boots_background.png.import │ │ ├── weapon_background.png │ │ └── weapon_background.png.import ├── item_info │ ├── item_info.gd │ ├── item_info.gd.uid │ └── item_info.tscn ├── materials │ └── equipment_glow.tres └── resources │ ├── consumable_1.tres │ ├── equipment_1.tres │ └── stackable_1.tres ├── addons └── grid_base_inventory_system │ ├── LICENSE.md │ ├── core │ ├── grid_base_inventory_system.gd │ ├── grid_base_inventory_system.gd.uid │ ├── model │ │ ├── container │ │ │ ├── container_data.gd │ │ │ └── container_data.gd.uid │ │ ├── item │ │ │ ├── consumable_data.gd │ │ │ ├── consumable_data.gd.uid │ │ │ ├── equipment_data.gd │ │ │ ├── equipment_data.gd.uid │ │ │ ├── item_data.gd │ │ │ ├── item_data.gd.uid │ │ │ ├── stackable_data.gd │ │ │ └── stackable_data.gd.uid │ │ └── slot │ │ │ ├── equipment_slot_data.gd │ │ │ └── equipment_slot_data.gd.uid │ ├── repository │ │ ├── container_repository.gd │ │ ├── container_repository.gd.uid │ │ ├── equipment_slot_repository.gd │ │ └── equipment_slot_repository.gd.uid │ ├── service │ │ ├── base_container_service.gd │ │ ├── base_container_service.gd.uid │ │ ├── equipment_slot_service.gd │ │ ├── equipment_slot_service.gd.uid │ │ ├── inventory_service.gd │ │ ├── inventory_service.gd.uid │ │ ├── item_focus_service.gd │ │ ├── item_focus_service.gd.uid │ │ ├── moving_item_service.gd │ │ ├── moving_item_service.gd.uid │ │ ├── shop_service.gd │ │ └── shop_service.gd.uid │ └── view │ │ ├── container │ │ ├── base_container_view.gd │ │ ├── base_container_view.gd.uid │ │ ├── base_grid_view.gd │ │ ├── base_grid_view.gd.uid │ │ ├── inventory │ │ │ ├── inventory_grid_view.gd │ │ │ ├── inventory_grid_view.gd.uid │ │ │ ├── inventory_view.gd │ │ │ └── inventory_view.gd.uid │ │ └── shop │ │ │ ├── shop_grid_view.gd │ │ │ ├── shop_grid_view.gd.uid │ │ │ ├── shop_view.gd │ │ │ └── shop_view.gd.uid │ │ ├── item │ │ ├── drop_area_view.gd │ │ ├── drop_area_view.gd.uid │ │ ├── item_view.gd │ │ └── item_view.gd.uid │ │ └── slot │ │ ├── equipment_slot_view.gd │ │ └── equipment_slot_view.gd.uid │ ├── readme.md │ └── saves │ └── .placeholder ├── icon.svg ├── icon.svg.import ├── project.godot └── readme.md /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/.gitignore -------------------------------------------------------------------------------- /GBIS_demos/1_simple_inventory/simple_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/1_simple_inventory/simple_inventory.gd -------------------------------------------------------------------------------- /GBIS_demos/1_simple_inventory/simple_inventory.gd.uid: -------------------------------------------------------------------------------- 1 | uid://8jvttk2cbe1v 2 | -------------------------------------------------------------------------------- /GBIS_demos/1_simple_inventory/simple_inventory.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/1_simple_inventory/simple_inventory.tscn -------------------------------------------------------------------------------- /GBIS_demos/2_equipment_slot/equipment_slot.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/2_equipment_slot/equipment_slot.gd -------------------------------------------------------------------------------- /GBIS_demos/2_equipment_slot/equipment_slot.gd.uid: -------------------------------------------------------------------------------- 1 | uid://1so58lwsljdv 2 | -------------------------------------------------------------------------------- /GBIS_demos/2_equipment_slot/equipment_slot.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/2_equipment_slot/equipment_slot.tscn -------------------------------------------------------------------------------- /GBIS_demos/3_shop/shop.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/3_shop/shop.gd -------------------------------------------------------------------------------- /GBIS_demos/3_shop/shop.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b6k6cimo20y2w 2 | -------------------------------------------------------------------------------- /GBIS_demos/3_shop/shop.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/3_shop/shop.tscn -------------------------------------------------------------------------------- /GBIS_demos/4_change_data_source/change_data_source.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/4_change_data_source/change_data_source.gd -------------------------------------------------------------------------------- /GBIS_demos/4_change_data_source/change_data_source.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bo15n4nmxsopn 2 | -------------------------------------------------------------------------------- /GBIS_demos/4_change_data_source/change_data_source.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/4_change_data_source/change_data_source.tscn -------------------------------------------------------------------------------- /GBIS_demos/assets/screenshots/GBIS架构.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/screenshots/GBIS架构.drawio.png -------------------------------------------------------------------------------- /GBIS_demos/assets/screenshots/GBIS架构.drawio.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/screenshots/GBIS架构.drawio.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-32-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-32-34.png -------------------------------------------------------------------------------- /GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-32-34.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-32-34.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-33-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-33-31.png -------------------------------------------------------------------------------- /GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-33-31.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-33-31.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-33-52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-33-52.png -------------------------------------------------------------------------------- /GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-33-52.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/screenshots/Snipaste_2025-07-06_16-33-52.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/test_item_icons/armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/test_item_icons/armor.png -------------------------------------------------------------------------------- /GBIS_demos/assets/test_item_icons/armor.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/test_item_icons/armor.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/test_item_icons/boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/test_item_icons/boots.png -------------------------------------------------------------------------------- /GBIS_demos/assets/test_item_icons/boots.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/test_item_icons/boots.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/test_item_icons/bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/test_item_icons/bottle.png -------------------------------------------------------------------------------- /GBIS_demos/assets/test_item_icons/bottle.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/test_item_icons/bottle.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/test_item_icons/jewel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/test_item_icons/jewel.png -------------------------------------------------------------------------------- /GBIS_demos/assets/test_item_icons/jewel.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/test_item_icons/jewel.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/test_item_icons/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/test_item_icons/sword.png -------------------------------------------------------------------------------- /GBIS_demos/assets/test_item_icons/sword.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/test_item_icons/sword.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/ui/armor_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/ui/armor_background.png -------------------------------------------------------------------------------- /GBIS_demos/assets/ui/armor_background.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/ui/armor_background.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/ui/boots_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/ui/boots_background.png -------------------------------------------------------------------------------- /GBIS_demos/assets/ui/boots_background.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/ui/boots_background.png.import -------------------------------------------------------------------------------- /GBIS_demos/assets/ui/weapon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/ui/weapon_background.png -------------------------------------------------------------------------------- /GBIS_demos/assets/ui/weapon_background.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/assets/ui/weapon_background.png.import -------------------------------------------------------------------------------- /GBIS_demos/item_info/item_info.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/item_info/item_info.gd -------------------------------------------------------------------------------- /GBIS_demos/item_info/item_info.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bgrb6c4tohqk8 2 | -------------------------------------------------------------------------------- /GBIS_demos/item_info/item_info.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/item_info/item_info.tscn -------------------------------------------------------------------------------- /GBIS_demos/materials/equipment_glow.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/materials/equipment_glow.tres -------------------------------------------------------------------------------- /GBIS_demos/resources/consumable_1.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/resources/consumable_1.tres -------------------------------------------------------------------------------- /GBIS_demos/resources/equipment_1.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/resources/equipment_1.tres -------------------------------------------------------------------------------- /GBIS_demos/resources/stackable_1.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/GBIS_demos/resources/stackable_1.tres -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/LICENSE.md -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/grid_base_inventory_system.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/grid_base_inventory_system.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/grid_base_inventory_system.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dit4hlufoh182 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/container/container_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/model/container/container_data.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/container/container_data.gd.uid: -------------------------------------------------------------------------------- 1 | uid://3a8er1gtaua3 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/item/consumable_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/model/item/consumable_data.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/item/consumable_data.gd.uid: -------------------------------------------------------------------------------- 1 | uid://x8lw6iyk5rf5 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/item/equipment_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/model/item/equipment_data.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/item/equipment_data.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c81d67advvltj 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/item/item_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/model/item/item_data.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/item/item_data.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c5uqs7o5b2w68 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/item/stackable_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/model/item/stackable_data.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/item/stackable_data.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bm5efdrlci0qk 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/slot/equipment_slot_data.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/model/slot/equipment_slot_data.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/model/slot/equipment_slot_data.gd.uid: -------------------------------------------------------------------------------- 1 | uid://csn3cpxvpgr46 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/repository/container_repository.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/repository/container_repository.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/repository/container_repository.gd.uid: -------------------------------------------------------------------------------- 1 | uid://buv85ki5jyttc 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/repository/equipment_slot_repository.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/repository/equipment_slot_repository.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/repository/equipment_slot_repository.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bgtkqdvre4erv 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/base_container_service.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/service/base_container_service.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/base_container_service.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bey8gu2yepak4 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/equipment_slot_service.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/service/equipment_slot_service.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/equipment_slot_service.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dekq6ugqhskx2 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/inventory_service.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/service/inventory_service.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/inventory_service.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b44uhvfvh7y7e 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/item_focus_service.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/service/item_focus_service.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/item_focus_service.gd.uid: -------------------------------------------------------------------------------- 1 | uid://btlcjaxu6pfuc 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/moving_item_service.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/service/moving_item_service.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/moving_item_service.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dmus44w7fnly6 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/shop_service.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/service/shop_service.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/service/shop_service.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dimdw1ryialjv 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/base_container_view.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/view/container/base_container_view.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/base_container_view.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cug18mgd8foi1 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/base_grid_view.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/view/container/base_grid_view.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/base_grid_view.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c2oyu5x5f4fi0 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/inventory/inventory_grid_view.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/view/container/inventory/inventory_grid_view.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/inventory/inventory_grid_view.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cyvhdwuxcakw2 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/inventory/inventory_view.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/view/container/inventory/inventory_view.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/inventory/inventory_view.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b3x4mwtjmm4tp 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/shop/shop_grid_view.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/view/container/shop/shop_grid_view.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/shop/shop_grid_view.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bl3ijrxx6jtr8 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/shop/shop_view.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/view/container/shop/shop_view.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/container/shop/shop_view.gd.uid: -------------------------------------------------------------------------------- 1 | uid://gqt6pq4lt0gw 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/item/drop_area_view.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/view/item/drop_area_view.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/item/drop_area_view.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c5rou3jm33pbt 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/item/item_view.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/view/item/item_view.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/item/item_view.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bcqgnt2jdpoie 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/slot/equipment_slot_view.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/core/view/slot/equipment_slot_view.gd -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/core/view/slot/equipment_slot_view.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dg6xjko3rdcta 2 | -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/addons/grid_base_inventory_system/readme.md -------------------------------------------------------------------------------- /addons/grid_base_inventory_system/saves/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/project.godot -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cabbage0211/grid-base-inventory-system/HEAD/readme.md --------------------------------------------------------------------------------