├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── Godot4InventoryEditor.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── addons ├── inventory_editor │ ├── InventoryEditor.gd │ ├── InventoryEditor.tscn │ ├── InventoryInspectorPluginEditorInventory.gd │ ├── InventoryInspectorPluginEditorItem.gd │ ├── InventoryInspectorPluginEditorType.gd │ ├── InventoryInspectorPluginItem.gd │ ├── InventoryItem2D.gd │ ├── InventoryItem3D.gd │ ├── InventoryManager.gd │ ├── InventoryManagerInventories.gd │ ├── InventorySave.res │ ├── default │ │ ├── fonts │ │ │ ├── Pangolin-Regular.ttf │ │ │ └── Pangolin-Regular.ttf.import │ │ └── styles │ │ │ └── style_base.tres │ ├── icons │ │ ├── Add.png │ │ ├── Add.png.import │ │ ├── Copy.png │ │ ├── Copy.png.import │ │ ├── Copy.png~ │ │ ├── Craft.png │ │ ├── Craft.png.import │ │ ├── Craft.png~ │ │ ├── Del.png │ │ ├── Del.png.import │ │ ├── File.png │ │ ├── File.png.import │ │ ├── Ingredient.png │ │ ├── Ingredient.png.import │ │ ├── Ingredient.png~ │ │ ├── Inventory.png │ │ ├── Inventory.png.import │ │ ├── Inventory.png~ │ │ ├── Item.png │ │ ├── Item.png.import │ │ ├── Item.png~ │ │ ├── ItemControl.png │ │ ├── ItemControl.png.import │ │ ├── Put.png │ │ ├── Put.png.import │ │ ├── Recipe.png │ │ ├── Recipe.png.import │ │ ├── Recipe.png~ │ │ ├── Save.png │ │ ├── Save.png.import │ │ ├── Trash.png │ │ ├── Trash.png.import │ │ ├── Type.png │ │ ├── Type.png.import │ │ └── Type.png~ │ ├── model │ │ ├── InventoryData.gd │ │ ├── InventoryInventory.gd │ │ ├── InventoryItem.gd │ │ ├── InventoryRecipe.gd │ │ └── InventoryType.gd │ ├── plugin.cfg │ ├── plugin.gd │ ├── scenes │ │ ├── craft │ │ │ ├── InventoryCraftData.gd │ │ │ ├── InventoryCraftData.tscn │ │ │ ├── InventoryCraftDataIngredient.gd │ │ │ ├── InventoryCraftDataIngredient.tscn │ │ │ ├── InventoryCraftDataPath.gd │ │ │ ├── InventoryCraftDataPath.tscn │ │ │ ├── InventoryCraftDataPathScene.gd │ │ │ ├── InventoryCraftDataPathScene.tscn │ │ │ ├── InventoryCraftDataResourceDialogFile.tscn │ │ │ ├── InventoryCraftEditorView.gd │ │ │ ├── InventoryCraftEditorView.tscn │ │ │ ├── InventoryCraftRecipeUI.gd │ │ │ ├── InventoryCraftRecipeUI.tscn │ │ │ ├── InventoryCraftRecipes.gd │ │ │ └── InventoryCraftRecipes.tscn │ │ ├── inventories │ │ │ ├── InventoryInventories.gd │ │ │ ├── InventoryInventories.tscn │ │ │ ├── InventoryInventoriesEditorView.gd │ │ │ ├── InventoryInventoriesEditorView.tscn │ │ │ ├── InventoryInventoryData.gd │ │ │ ├── InventoryInventoryData.tscn │ │ │ ├── InventoryInventoryDataPath.gd │ │ │ ├── InventoryInventoryDataPath.tscn │ │ │ ├── InventoryInventoryDataPathScene.gd │ │ │ ├── InventoryInventoryDataPathScene.tscn │ │ │ ├── InventoryInventoryPreview.gd │ │ │ ├── InventoryInventoryPreview.tscn │ │ │ ├── InventoryInventoryUI.gd │ │ │ └── InventoryInventoryUI.tscn │ │ └── items │ │ │ ├── InventoryItemData.gd │ │ │ ├── InventoryItemData.tscn │ │ │ ├── InventoryItemDataPath.gd │ │ │ ├── InventoryItemDataPath.tscn │ │ │ ├── InventoryItemDataPathScene.gd │ │ │ ├── InventoryItemDataPathScene.tscn │ │ │ ├── InventoryItemDataProperty.gd │ │ │ ├── InventoryItemDataProperty.tscn │ │ │ ├── InventoryItemPreview3D.tscn │ │ │ ├── InventoryItemUI.gd │ │ │ ├── InventoryItemUI.tscn │ │ │ ├── InventoryItems.gd │ │ │ ├── InventoryItems.tscn │ │ │ ├── InventoryItemsEditorView.gd │ │ │ ├── InventoryItemsEditorView.tscn │ │ │ ├── InventoryTypeData.gd │ │ │ ├── InventoryTypeData.tscn │ │ │ ├── InventoryTypeDataPath.gd │ │ │ ├── InventoryTypeDataPath.tscn │ │ │ ├── InventoryTypeUI.gd │ │ │ ├── InventoryTypeUI.tscn │ │ │ ├── InventoryTypes.gd │ │ │ ├── InventoryTypes.tscn │ │ │ ├── InventoryTypesEditorView.gd │ │ │ └── InventoryTypesEditorView.tscn │ ├── test │ │ ├── MainTest.gd │ │ ├── MainTest.tscn │ │ ├── model │ │ │ ├── TestInventoryInventories.gd │ │ │ └── TestInventoryInventories.tscn │ │ └── test_model │ │ │ ├── UnitTest.gd │ │ │ └── icons │ │ │ ├── Fail.svg │ │ │ ├── Fail.svg.import │ │ │ ├── Success.svg │ │ │ └── Success.svg.import │ ├── ui │ │ ├── InventoryInventoryUI.gd │ │ ├── InventoryItemUI.gd │ │ ├── InventoryItemUIIcon.gd │ │ ├── InventoryItemUIIcon.tscn │ │ ├── PopupDescription.gd │ │ └── PopupDescription.tscn │ └── uuid │ │ ├── .gitattributes │ │ ├── LICENSE │ │ ├── README.md │ │ ├── logo.png │ │ ├── logo.png.import │ │ ├── logo.svg │ │ ├── logo.svg.import │ │ └── uuid.gd ├── inventory_example │ ├── 2d │ │ ├── Level.gd │ │ ├── Level.tscn │ │ ├── Level1.gd │ │ ├── Level1.tscn │ │ ├── LevelCraft.tscn │ │ ├── items │ │ │ ├── ArmorKnight.tscn │ │ │ ├── ArmorViking.tscn │ │ │ ├── BootsKnight.tscn │ │ │ ├── BootsViking.tscn │ │ │ ├── GloveLeftKnight.tscn │ │ │ ├── GloveLeftViking.tscn │ │ │ ├── GloveRightKnight.tscn │ │ │ ├── GloveRightViking.tscn │ │ │ ├── Gold.tscn │ │ │ ├── HealthBig.tscn │ │ │ ├── HealthNormal.tscn │ │ │ ├── HelmetKnight.tscn │ │ │ ├── HelmetViking.tscn │ │ │ ├── Horn.tscn │ │ │ ├── ManaBig.tscn │ │ │ ├── ManaNormal.tscn │ │ │ ├── Metal.tscn │ │ │ ├── RecipeHelmetKnight.tscn │ │ │ ├── RecipeHelmetViking.tscn │ │ │ ├── ShieldKnight.tscn │ │ │ ├── ShieldViking.tscn │ │ │ ├── SwordDestroyer.tscn │ │ │ └── SwordDragonhunter.tscn │ │ └── player │ │ │ ├── Player.gd │ │ │ └── Player.tscn │ ├── 3d │ │ ├── Level1.gd │ │ ├── Level1.tscn │ │ ├── items │ │ │ ├── BladeMat.material │ │ │ ├── DestGripMat.material │ │ │ ├── DragGripMat.material │ │ │ ├── DragGripStoneMat.material │ │ │ ├── GlasMat.material │ │ │ ├── Gold.glb │ │ │ ├── Gold.glb.import │ │ │ ├── Gold.material │ │ │ ├── HealthBig.glb │ │ │ ├── HealthBig.glb.import │ │ │ ├── HealthBig.tscn │ │ │ ├── HealthMat.material │ │ │ ├── HealthNormal.glb │ │ │ ├── HealthNormal.glb.import │ │ │ ├── HealthNormal.tscn │ │ │ ├── Horn.glb │ │ │ ├── Horn.glb.import │ │ │ ├── Horn.material │ │ │ ├── ManaBig.glb │ │ │ ├── ManaBig.glb.import │ │ │ ├── ManaBig.tscn │ │ │ ├── ManaMat.material │ │ │ ├── ManaNormal.glb │ │ │ ├── ManaNormal.glb.import │ │ │ ├── ManaNormal.tscn │ │ │ ├── Material.material │ │ │ ├── Metal.glb │ │ │ ├── Metal.glb.import │ │ │ ├── SwordDestroyer.glb │ │ │ ├── SwordDestroyer.glb.import │ │ │ ├── SwordDestroyer.tscn │ │ │ ├── SwordDragonhunter.glb │ │ │ ├── SwordDragonhunter.glb.import │ │ │ ├── SwordDragonhunter.tscn │ │ │ ├── WoodMat.material │ │ │ ├── ingredients.blend │ │ │ ├── ingredients.blend.import │ │ │ ├── ingredients.blend1 │ │ │ ├── potions.blend │ │ │ ├── potions.blend.import │ │ │ ├── potions.blend1 │ │ │ ├── weapons.blend │ │ │ ├── weapons.blend.import │ │ │ └── weapons.blend1 │ │ ├── models │ │ │ ├── Black.material │ │ │ ├── Blue.material │ │ │ ├── White.material │ │ │ ├── godotBoy.glb │ │ │ └── godotBoy.glb.import │ │ └── player │ │ │ ├── Player.gd │ │ │ └── Player.tscn │ ├── inventories │ │ ├── clothes │ │ │ └── InventoryClothesUI.tscn │ │ └── simple │ │ │ ├── InventoryUI.gd │ │ │ ├── InventoryUI.tscn │ │ │ ├── ItemUI.gd │ │ │ └── ItemUI.tscn │ └── textures │ │ ├── Background.png │ │ ├── Background.png.import │ │ ├── BackgroundSide.png │ │ ├── BackgroundSide.png.import │ │ ├── Boy_eys_open.png │ │ ├── Boy_eys_open.png.import │ │ ├── Girl_eys_open.png │ │ ├── Girl_eys_open.png.import │ │ ├── armor │ │ ├── Armor.png │ │ ├── Armor.png.import │ │ ├── ArmorKnight.png │ │ ├── ArmorKnight.png.import │ │ ├── ArmorViking.png │ │ └── ArmorViking.png.import │ │ ├── boots │ │ ├── Boots.png │ │ ├── Boots.png.import │ │ ├── Boots.png~ │ │ ├── BootsKnight.png │ │ ├── BootsKnight.png.import │ │ ├── BootsViking.png │ │ └── BootsViking.png.import │ │ ├── glovesleft │ │ ├── GlovesLeft.png │ │ ├── GlovesLeft.png.import │ │ ├── GlovesLeft.png~ │ │ ├── GlovesLeftKnight.png │ │ ├── GlovesLeftKnight.png.import │ │ ├── GlovesLeftViking.png │ │ └── GlovesLeftViking.png.import │ │ ├── glovesright │ │ ├── GlovesRight.png │ │ ├── GlovesRight.png.import │ │ ├── GlovesRightKnight.png │ │ ├── GlovesRightKnight.png.import │ │ ├── GlovesRightViking.png │ │ └── GlovesRightViking.png.import │ │ ├── helmets │ │ ├── HelmetKnight.png │ │ ├── HelmetKnight.png.import │ │ ├── HelmetViking.png │ │ ├── HelmetViking.png.import │ │ ├── Helmets.png │ │ ├── Helmets.png.import │ │ └── Helmets.png~ │ │ ├── ingredients │ │ ├── Gold.png │ │ ├── Gold.png.import │ │ ├── Gold.png~ │ │ ├── Horn.png │ │ ├── Horn.png.import │ │ ├── Horn.png~ │ │ ├── Ingredients.png │ │ ├── Ingredients.png.import │ │ ├── Metal.png │ │ ├── Metal.png.import │ │ └── Metal.png~ │ │ ├── inventories │ │ ├── Chest.png │ │ ├── Chest.png.import │ │ ├── Clothes.png │ │ ├── Clothes.png.import │ │ ├── InventoryBackground.png │ │ ├── InventoryBackground.png.import │ │ ├── InventoryBackground.png~ │ │ ├── InventoryBackgroundItem.png │ │ ├── InventoryBackgroundItem.png.import │ │ ├── InventoryBackgroundItemArmor.png │ │ ├── InventoryBackgroundItemArmor.png.import │ │ ├── InventoryBackgroundItemArmor.png~ │ │ ├── InventoryBackgroundItemBoots.png │ │ ├── InventoryBackgroundItemBoots.png.import │ │ ├── InventoryBackgroundItemBoots.png~ │ │ ├── InventoryBackgroundItemGlovesLeft.png │ │ ├── InventoryBackgroundItemGlovesLeft.png.import │ │ ├── InventoryBackgroundItemGlovesLeft.png~ │ │ ├── InventoryBackgroundItemGlovesRight.png │ │ ├── InventoryBackgroundItemGlovesRight.png.import │ │ ├── InventoryBackgroundItemGlovesRight.png~ │ │ ├── InventoryBackgroundItemHelmet.png │ │ ├── InventoryBackgroundItemHelmet.png.import │ │ ├── InventoryBackgroundItemHelmet.png~ │ │ ├── InventoryBackgroundItemHelmetGlovesLeft.png~ │ │ ├── InventoryBackgroundItemHelmetGlovesRight.png~ │ │ ├── InventoryBackgroundItemShield.png │ │ ├── InventoryBackgroundItemShield.png.import │ │ ├── InventoryBackgroundItemWeapon.png │ │ ├── InventoryBackgroundItemWeapon.png.import │ │ └── InventoryBackgroundItemWeapon.png~ │ │ ├── potions │ │ ├── HealthBig.png │ │ ├── HealthBig.png.import │ │ ├── HealthNormal.png │ │ ├── HealthNormal.png.import │ │ ├── ManaBig.png │ │ ├── ManaBig.png.import │ │ ├── ManaNormal.png │ │ ├── ManaNormal.png.import │ │ ├── Potions.png │ │ ├── Potions.png.import │ │ └── Potions.png~ │ │ ├── recipes │ │ ├── helmet_knight.png │ │ ├── helmet_knight.png.import │ │ ├── helmet_knight.png~ │ │ ├── helmet_viking.png │ │ ├── helmet_viking.png.import │ │ └── helmet_viking.png~ │ │ ├── shields │ │ ├── ShieldKnight.png │ │ ├── ShieldKnight.png.import │ │ ├── ShieldViking.png │ │ ├── ShieldViking.png.import │ │ ├── Shields.png │ │ ├── Shields.png.import │ │ └── Shilds.png~ │ │ └── weapons │ │ ├── SwordDestroyer.png │ │ ├── SwordDestroyer.png.import │ │ ├── SwordDragonhunter.png │ │ ├── SwordDragonhunter.png.import │ │ ├── Weapons.png │ │ ├── Weapons.png.import │ │ └── Weapons.png~ └── ui_extensions │ └── dropdown │ ├── Arrow.svg │ ├── Arrow.svg.import │ ├── Cancel.svg │ ├── Cancel.svg.import │ ├── Dropdown.gd │ ├── Dropdown.tscn │ └── DropdownItem.gd ├── icon.png ├── icon.png.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Godot4InventoryEditor.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/.idea/Godot4InventoryEditor.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/README.md -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryEditor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventoryEditor.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryEditor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventoryEditor.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginEditorInventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventoryInspectorPluginEditorInventory.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginEditorItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventoryInspectorPluginEditorItem.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginEditorType.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventoryInspectorPluginEditorType.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryInspectorPluginItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventoryInspectorPluginItem.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryItem2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventoryItem2D.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryItem3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventoryItem3D.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventoryManager.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventoryManagerInventories.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventoryManagerInventories.gd -------------------------------------------------------------------------------- /addons/inventory_editor/InventorySave.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/InventorySave.res -------------------------------------------------------------------------------- /addons/inventory_editor/default/fonts/Pangolin-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/default/fonts/Pangolin-Regular.ttf -------------------------------------------------------------------------------- /addons/inventory_editor/default/fonts/Pangolin-Regular.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/default/fonts/Pangolin-Regular.ttf.import -------------------------------------------------------------------------------- /addons/inventory_editor/default/styles/style_base.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/default/styles/style_base.tres -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Add.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Add.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Add.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Copy.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Copy.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Copy.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Copy.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Copy.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Craft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Craft.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Craft.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Craft.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Craft.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Craft.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Del.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Del.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Del.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/File.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/File.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/File.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Ingredient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Ingredient.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Ingredient.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Ingredient.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Ingredient.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Ingredient.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Inventory.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Inventory.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Inventory.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Inventory.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Inventory.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Item.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Item.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Item.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Item.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Item.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/ItemControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/ItemControl.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/ItemControl.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/ItemControl.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Put.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Put.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Put.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Recipe.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Recipe.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Recipe.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Recipe.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Recipe.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Save.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Save.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Save.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Trash.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Trash.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Trash.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Type.png -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Type.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Type.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/icons/Type.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/icons/Type.png~ -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/model/InventoryData.gd -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryInventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/model/InventoryInventory.gd -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/model/InventoryItem.gd -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryRecipe.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/model/InventoryRecipe.gd -------------------------------------------------------------------------------- /addons/inventory_editor/model/InventoryType.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/model/InventoryType.gd -------------------------------------------------------------------------------- /addons/inventory_editor/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/plugin.cfg -------------------------------------------------------------------------------- /addons/inventory_editor/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/plugin.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftData.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftData.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataIngredient.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftDataIngredient.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataIngredient.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftDataIngredient.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftDataPath.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataPath.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftDataPath.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataPathScene.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftDataPathScene.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataPathScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftDataPathScene.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftDataResourceDialogFile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftDataResourceDialogFile.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftEditorView.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftEditorView.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftRecipeUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftRecipeUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftRecipeUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftRecipeUI.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftRecipes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftRecipes.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/craft/InventoryCraftRecipes.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/craft/InventoryCraftRecipes.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventories.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventories.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventories.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventories.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoriesEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoriesEditorView.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoriesEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoriesEditorView.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoryData.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoryData.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryDataPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoryDataPath.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryDataPath.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoryDataPath.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryDataPathScene.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoryDataPathScene.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryDataPathScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoryDataPathScene.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryPreview.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoryPreview.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryPreview.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoryPreview.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoryUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/inventories/InventoryInventoryUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/inventories/InventoryInventoryUI.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemData.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemData.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemDataPath.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataPath.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemDataPath.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataPathScene.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemDataPathScene.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataPathScene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemDataPathScene.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataProperty.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemDataProperty.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemDataProperty.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemDataProperty.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemPreview3D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemPreview3D.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemUI.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItems.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItems.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItems.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItems.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemsEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemsEditorView.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryItemsEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryItemsEditorView.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeData.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeData.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeData.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeDataPath.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeDataPath.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeDataPath.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeDataPath.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypeUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypeUI.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypes.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypes.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypes.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypesEditorView.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypesEditorView.gd -------------------------------------------------------------------------------- /addons/inventory_editor/scenes/items/InventoryTypesEditorView.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/scenes/items/InventoryTypesEditorView.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/test/MainTest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/test/MainTest.gd -------------------------------------------------------------------------------- /addons/inventory_editor/test/MainTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/test/MainTest.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/test/model/TestInventoryInventories.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/test/model/TestInventoryInventories.gd -------------------------------------------------------------------------------- /addons/inventory_editor/test/model/TestInventoryInventories.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/test/model/TestInventoryInventories.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/UnitTest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/test/test_model/UnitTest.gd -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/icons/Fail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/test/test_model/icons/Fail.svg -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/icons/Fail.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/test/test_model/icons/Fail.svg.import -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/icons/Success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/test/test_model/icons/Success.svg -------------------------------------------------------------------------------- /addons/inventory_editor/test/test_model/icons/Success.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/test/test_model/icons/Success.svg.import -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryInventoryUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/ui/InventoryInventoryUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryItemUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/ui/InventoryItemUI.gd -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryItemUIIcon.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/ui/InventoryItemUIIcon.gd -------------------------------------------------------------------------------- /addons/inventory_editor/ui/InventoryItemUIIcon.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/ui/InventoryItemUIIcon.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/ui/PopupDescription.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/ui/PopupDescription.gd -------------------------------------------------------------------------------- /addons/inventory_editor/ui/PopupDescription.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/ui/PopupDescription.tscn -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/.gitattributes: -------------------------------------------------------------------------------- 1 | *.gd linguist-language=GDScript 2 | -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/uuid/LICENSE -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/uuid/README.md -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/uuid/logo.png -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/uuid/logo.png.import -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/uuid/logo.svg -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/logo.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/uuid/logo.svg.import -------------------------------------------------------------------------------- /addons/inventory_editor/uuid/uuid.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_editor/uuid/uuid.gd -------------------------------------------------------------------------------- /addons/inventory_example/2d/Level.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/Level.gd -------------------------------------------------------------------------------- /addons/inventory_example/2d/Level.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/Level.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/Level1.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/Level1.gd -------------------------------------------------------------------------------- /addons/inventory_example/2d/Level1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/Level1.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/LevelCraft.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/LevelCraft.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/ArmorKnight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/ArmorKnight.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/ArmorViking.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/ArmorViking.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/BootsKnight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/BootsKnight.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/BootsViking.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/BootsViking.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/GloveLeftKnight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/GloveLeftKnight.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/GloveLeftViking.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/GloveLeftViking.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/GloveRightKnight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/GloveRightKnight.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/GloveRightViking.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/GloveRightViking.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/Gold.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/Gold.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/HealthBig.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/HealthBig.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/HealthNormal.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/HealthNormal.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/HelmetKnight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/HelmetKnight.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/HelmetViking.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/HelmetViking.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/Horn.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/Horn.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/ManaBig.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/ManaBig.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/ManaNormal.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/ManaNormal.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/Metal.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/Metal.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/RecipeHelmetKnight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/RecipeHelmetKnight.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/RecipeHelmetViking.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/RecipeHelmetViking.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/ShieldKnight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/ShieldKnight.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/ShieldViking.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/ShieldViking.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/SwordDestroyer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/SwordDestroyer.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/items/SwordDragonhunter.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/items/SwordDragonhunter.tscn -------------------------------------------------------------------------------- /addons/inventory_example/2d/player/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/player/Player.gd -------------------------------------------------------------------------------- /addons/inventory_example/2d/player/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/2d/player/Player.tscn -------------------------------------------------------------------------------- /addons/inventory_example/3d/Level1.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/Level1.gd -------------------------------------------------------------------------------- /addons/inventory_example/3d/Level1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/Level1.tscn -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/BladeMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/BladeMat.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/DestGripMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/DestGripMat.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/DragGripMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/DragGripMat.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/DragGripStoneMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/DragGripStoneMat.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/GlasMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/GlasMat.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/Gold.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/Gold.glb -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/Gold.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/Gold.glb.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/Gold.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/Gold.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/HealthBig.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/HealthBig.glb -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/HealthBig.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/HealthBig.glb.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/HealthBig.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/HealthBig.tscn -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/HealthMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/HealthMat.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/HealthNormal.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/HealthNormal.glb -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/HealthNormal.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/HealthNormal.glb.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/HealthNormal.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/HealthNormal.tscn -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/Horn.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/Horn.glb -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/Horn.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/Horn.glb.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/Horn.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/Horn.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/ManaBig.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/ManaBig.glb -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/ManaBig.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/ManaBig.glb.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/ManaBig.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/ManaBig.tscn -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/ManaMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/ManaMat.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/ManaNormal.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/ManaNormal.glb -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/ManaNormal.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/ManaNormal.glb.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/ManaNormal.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/ManaNormal.tscn -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/Material.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/Material.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/Metal.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/Metal.glb -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/Metal.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/Metal.glb.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/SwordDestroyer.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/SwordDestroyer.glb -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/SwordDestroyer.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/SwordDestroyer.glb.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/SwordDestroyer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/SwordDestroyer.tscn -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/SwordDragonhunter.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/SwordDragonhunter.glb -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/SwordDragonhunter.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/SwordDragonhunter.glb.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/SwordDragonhunter.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/SwordDragonhunter.tscn -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/WoodMat.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/WoodMat.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/ingredients.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/ingredients.blend -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/ingredients.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/ingredients.blend.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/ingredients.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/ingredients.blend1 -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/potions.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/potions.blend -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/potions.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/potions.blend.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/potions.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/potions.blend1 -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/weapons.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/weapons.blend -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/weapons.blend.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/weapons.blend.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/items/weapons.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/items/weapons.blend1 -------------------------------------------------------------------------------- /addons/inventory_example/3d/models/Black.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/models/Black.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/models/Blue.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/models/Blue.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/models/White.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/models/White.material -------------------------------------------------------------------------------- /addons/inventory_example/3d/models/godotBoy.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/models/godotBoy.glb -------------------------------------------------------------------------------- /addons/inventory_example/3d/models/godotBoy.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/models/godotBoy.glb.import -------------------------------------------------------------------------------- /addons/inventory_example/3d/player/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/player/Player.gd -------------------------------------------------------------------------------- /addons/inventory_example/3d/player/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/3d/player/Player.tscn -------------------------------------------------------------------------------- /addons/inventory_example/inventories/clothes/InventoryClothesUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/inventories/clothes/InventoryClothesUI.tscn -------------------------------------------------------------------------------- /addons/inventory_example/inventories/simple/InventoryUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/inventories/simple/InventoryUI.gd -------------------------------------------------------------------------------- /addons/inventory_example/inventories/simple/InventoryUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/inventories/simple/InventoryUI.tscn -------------------------------------------------------------------------------- /addons/inventory_example/inventories/simple/ItemUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/inventories/simple/ItemUI.gd -------------------------------------------------------------------------------- /addons/inventory_example/inventories/simple/ItemUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/inventories/simple/ItemUI.tscn -------------------------------------------------------------------------------- /addons/inventory_example/textures/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/Background.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/Background.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/Background.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/BackgroundSide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/BackgroundSide.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/BackgroundSide.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/BackgroundSide.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/Boy_eys_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/Boy_eys_open.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/Boy_eys_open.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/Boy_eys_open.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/Girl_eys_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/Girl_eys_open.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/Girl_eys_open.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/Girl_eys_open.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/armor/Armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/armor/Armor.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/armor/Armor.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/armor/Armor.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/armor/ArmorKnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/armor/ArmorKnight.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/armor/ArmorKnight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/armor/ArmorKnight.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/armor/ArmorViking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/armor/ArmorViking.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/armor/ArmorViking.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/armor/ArmorViking.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/boots/Boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/boots/Boots.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/boots/Boots.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/boots/Boots.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/boots/Boots.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/boots/Boots.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/boots/BootsKnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/boots/BootsKnight.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/boots/BootsKnight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/boots/BootsKnight.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/boots/BootsViking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/boots/BootsViking.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/boots/BootsViking.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/boots/BootsViking.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesleft/GlovesLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesleft/GlovesLeft.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesleft/GlovesLeft.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesleft/GlovesLeft.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesleft/GlovesLeft.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesleft/GlovesLeft.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesleft/GlovesLeftKnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesleft/GlovesLeftKnight.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesleft/GlovesLeftKnight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesleft/GlovesLeftKnight.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesleft/GlovesLeftViking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesleft/GlovesLeftViking.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesleft/GlovesLeftViking.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesleft/GlovesLeftViking.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesright/GlovesRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesright/GlovesRight.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesright/GlovesRight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesright/GlovesRight.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesright/GlovesRightKnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesright/GlovesRightKnight.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesright/GlovesRightKnight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesright/GlovesRightKnight.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesright/GlovesRightViking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesright/GlovesRightViking.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/glovesright/GlovesRightViking.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/glovesright/GlovesRightViking.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/helmets/HelmetKnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/helmets/HelmetKnight.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/helmets/HelmetKnight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/helmets/HelmetKnight.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/helmets/HelmetViking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/helmets/HelmetViking.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/helmets/HelmetViking.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/helmets/HelmetViking.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/helmets/Helmets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/helmets/Helmets.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/helmets/Helmets.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/helmets/Helmets.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/helmets/Helmets.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/helmets/Helmets.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Gold.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Gold.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Gold.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Gold.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Gold.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Horn.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Horn.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Horn.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Horn.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Horn.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Ingredients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Ingredients.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Ingredients.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Ingredients.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Metal.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Metal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Metal.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/ingredients/Metal.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/ingredients/Metal.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/Chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/Chest.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/Chest.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/Chest.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/Clothes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/Clothes.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/Clothes.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/Clothes.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackground.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackground.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackground.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackground.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackground.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItem.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItem.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItem.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemArmor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemArmor.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemArmor.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemArmor.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemArmor.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemArmor.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemBoots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemBoots.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemBoots.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemBoots.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemBoots.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemBoots.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesLeft.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesLeft.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesLeft.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesLeft.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesLeft.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesRight.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesRight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesRight.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesRight.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemGlovesRight.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemHelmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemHelmet.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemHelmet.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemHelmet.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemHelmet.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemHelmet.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemHelmetGlovesLeft.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemHelmetGlovesLeft.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemHelmetGlovesRight.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemHelmetGlovesRight.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemShield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemShield.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemShield.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemShield.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemWeapon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemWeapon.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemWeapon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemWeapon.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/inventories/InventoryBackgroundItemWeapon.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/inventories/InventoryBackgroundItemWeapon.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/HealthBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/HealthBig.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/HealthBig.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/HealthBig.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/HealthNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/HealthNormal.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/HealthNormal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/HealthNormal.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/ManaBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/ManaBig.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/ManaBig.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/ManaBig.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/ManaNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/ManaNormal.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/ManaNormal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/ManaNormal.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/Potions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/Potions.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/Potions.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/Potions.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/potions/Potions.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/potions/Potions.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/recipes/helmet_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/recipes/helmet_knight.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/recipes/helmet_knight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/recipes/helmet_knight.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/recipes/helmet_knight.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/recipes/helmet_knight.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/recipes/helmet_viking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/recipes/helmet_viking.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/recipes/helmet_viking.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/recipes/helmet_viking.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/recipes/helmet_viking.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/recipes/helmet_viking.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/shields/ShieldKnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/shields/ShieldKnight.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/shields/ShieldKnight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/shields/ShieldKnight.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/shields/ShieldViking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/shields/ShieldViking.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/shields/ShieldViking.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/shields/ShieldViking.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/shields/Shields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/shields/Shields.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/shields/Shields.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/shields/Shields.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/shields/Shilds.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/shields/Shilds.png~ -------------------------------------------------------------------------------- /addons/inventory_example/textures/weapons/SwordDestroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/weapons/SwordDestroyer.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/weapons/SwordDestroyer.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/weapons/SwordDestroyer.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/weapons/SwordDragonhunter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/weapons/SwordDragonhunter.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/weapons/SwordDragonhunter.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/weapons/SwordDragonhunter.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/weapons/Weapons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/weapons/Weapons.png -------------------------------------------------------------------------------- /addons/inventory_example/textures/weapons/Weapons.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/weapons/Weapons.png.import -------------------------------------------------------------------------------- /addons/inventory_example/textures/weapons/Weapons.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/inventory_example/textures/weapons/Weapons.png~ -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/ui_extensions/dropdown/Arrow.svg -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Arrow.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/ui_extensions/dropdown/Arrow.svg.import -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/ui_extensions/dropdown/Cancel.svg -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Cancel.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/ui_extensions/dropdown/Cancel.svg.import -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Dropdown.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/ui_extensions/dropdown/Dropdown.gd -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/Dropdown.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/ui_extensions/dropdown/Dropdown.tscn -------------------------------------------------------------------------------- /addons/ui_extensions/dropdown/DropdownItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/addons/ui_extensions/dropdown/DropdownItem.gd -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP-GAMES/Godot4InventoryEditor/HEAD/project.godot --------------------------------------------------------------------------------