├── .gitattributes ├── .gitignore ├── .vsconfig ├── Assets ├── Prefabs.meta ├── Prefabs │ ├── Minecraft.meta │ ├── Minecraft │ │ ├── EquippedItems.prefab │ │ ├── EquippedItems.prefab.meta │ │ ├── InventoryMinecraft.prefab │ │ ├── InventoryMinecraft.prefab.meta │ │ ├── InventoryMinecraftCursorSlot.prefab │ │ ├── InventoryMinecraftCursorSlot.prefab.meta │ │ ├── InventoryMinecraftSlot.prefab │ │ └── InventoryMinecraftSlot.prefab.meta │ ├── SimpleList.meta │ └── SimpleList │ │ ├── InventoryList.prefab │ │ ├── InventoryList.prefab.meta │ │ ├── InventoryListSlot.prefab │ │ └── InventoryListSlot.prefab.meta ├── Scenes.meta ├── Scenes │ ├── InventoryDemo.unity │ ├── InventoryDemo.unity.meta │ ├── InventoryEquipmentDemo.unity │ └── InventoryEquipmentDemo.unity.meta ├── ScriptableObjects.meta ├── ScriptableObjects │ ├── Inventory.meta │ ├── Inventory │ │ ├── InventoryChannel.asset │ │ ├── InventoryChannel.asset.meta │ │ ├── InventoryUIChannel.asset │ │ ├── InventoryUIChannel.asset.meta │ │ ├── ItemTypes.meta │ │ ├── ItemTypes │ │ │ ├── ItemType_Boots.asset │ │ │ ├── ItemType_Boots.asset.meta │ │ │ ├── ItemType_ChestArmour.asset │ │ │ ├── ItemType_ChestArmour.asset.meta │ │ │ ├── ItemType_Helmet.asset │ │ │ ├── ItemType_Helmet.asset.meta │ │ │ ├── ItemType_Pants.asset │ │ │ ├── ItemType_Pants.asset.meta │ │ │ ├── ItemType_Weapon.asset │ │ │ └── ItemType_Weapon.asset.meta │ │ ├── Items.meta │ │ └── Items │ │ │ ├── AppleItem.asset │ │ │ ├── AppleItem.asset.meta │ │ │ ├── Cap.asset │ │ │ ├── Cap.asset.meta │ │ │ ├── KeyItem.asset │ │ │ ├── KeyItem.asset.meta │ │ │ ├── Shorts.asset │ │ │ ├── Shorts.asset.meta │ │ │ ├── Sneakers.asset │ │ │ ├── Sneakers.asset.meta │ │ │ ├── Sword.asset │ │ │ ├── Sword.asset.meta │ │ │ ├── TShirt.asset │ │ │ └── TShirt.asset.meta │ ├── Stats.meta │ └── Stats │ │ ├── AttackStat.asset │ │ ├── AttackStat.asset.meta │ │ ├── DefenseStat.asset │ │ └── DefenseStat.asset.meta ├── Scripts.meta ├── Scripts │ ├── Common.meta │ ├── Common │ │ ├── Common.asmdef │ │ ├── Common.asmdef.meta │ │ ├── CompositeScriptableObject.cs │ │ ├── CompositeScriptableObject.cs.meta │ │ ├── DataComponent.cs │ │ ├── DataComponent.cs.meta │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── Common.Editor.asmdef │ │ │ ├── Common.Editor.asmdef.meta │ │ │ ├── CompositeScriptableObjectEditor.cs │ │ │ └── CompositeScriptableObjectEditor.cs.meta │ ├── Inventory.meta │ ├── Inventory │ │ ├── Controllers.meta │ │ ├── Controllers │ │ │ ├── EquippedItemsHolder.cs │ │ │ ├── EquippedItemsHolder.cs.meta │ │ │ ├── FollowMouse.cs │ │ │ ├── FollowMouse.cs.meta │ │ │ ├── InventoryChannel.cs │ │ │ ├── InventoryChannel.cs.meta │ │ │ ├── InventoryHolder.cs │ │ │ └── InventoryHolder.cs.meta │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── Inventory.cs │ │ │ ├── Inventory.cs.meta │ │ │ ├── InventoryItem.cs │ │ │ ├── InventoryItem.cs.meta │ │ │ ├── InventoryItemType.cs │ │ │ ├── InventoryItemType.cs.meta │ │ │ ├── InventorySlot.cs │ │ │ ├── InventorySlot.cs.meta │ │ │ ├── Utils.cs │ │ │ └── Utils.cs.meta │ │ ├── InventorySystem.asmdef │ │ └── InventorySystem.asmdef.meta │ ├── InventoryStatApplier.cs │ ├── InventoryStatApplier.cs.meta │ ├── Stats.meta │ ├── Stats │ │ ├── Stat.cs │ │ ├── Stat.cs.meta │ │ ├── StatHolder.cs │ │ ├── StatHolder.cs.meta │ │ ├── StatModifierDataComponent.cs │ │ ├── StatModifierDataComponent.cs.meta │ │ ├── StatsSystem.asmdef │ │ └── StatsSystem.asmdef.meta │ ├── Tests.meta │ ├── Tests │ │ ├── InventorySlotTest.cs │ │ ├── InventorySlotTest.cs.meta │ │ ├── InventoryTest.cs │ │ ├── InventoryTest.cs.meta │ │ ├── Tests.asmdef │ │ └── Tests.asmdef.meta │ ├── UI.meta │ └── UI │ │ ├── Inventory.meta │ │ ├── Inventory │ │ ├── EquippedItemsUIController.cs │ │ ├── EquippedItemsUIController.cs.meta │ │ ├── InventoryCursorController.cs │ │ ├── InventoryCursorController.cs.meta │ │ ├── InventorySlotUIController.cs │ │ ├── InventorySlotUIController.cs.meta │ │ ├── InventoryUIChannel.cs │ │ ├── InventoryUIChannel.cs.meta │ │ ├── InventoryUIController.cs │ │ └── InventoryUIController.cs.meta │ │ ├── Stats.meta │ │ ├── Stats │ │ ├── StatUIController.cs │ │ └── StatUIController.cs.meta │ │ ├── UIAssembly.asmdef │ │ └── UIAssembly.asmdef.meta ├── Sprites.meta └── Sprites │ ├── Inventory.meta │ └── Inventory │ ├── EmptySlots.meta │ ├── EmptySlots │ ├── chest_slot.png │ ├── chest_slot.png.meta │ ├── chest_slot.png~ │ ├── feet_slot.png │ ├── feet_slot.png.meta │ ├── feet_slot.png~ │ ├── hand_slot.png │ ├── hand_slot.png.meta │ ├── hand_slot.png~ │ ├── head_slot.png │ ├── head_slot.png.meta │ ├── head_slot.png~ │ ├── pants_slot.png │ ├── pants_slot.png.meta │ └── pants_slot.png~ │ ├── apple.png │ ├── apple.png.meta │ ├── cap.png │ ├── cap.png.meta │ ├── key.png │ ├── key.png.meta │ ├── shorts.png │ ├── shorts.png.meta │ ├── sneaker.png │ ├── sneaker.png.meta │ ├── sword.png │ ├── sword.png.meta │ ├── tshirt.png │ └── tshirt.png.meta ├── Logs ├── ApiUpdaterCheck.txt ├── AssetImportWorker0.log └── Packages-Update.log ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md └── UserSettings └── EditorUserSettings.asset /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/.vsconfig -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Minecraft.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/Minecraft.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Minecraft/EquippedItems.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/Minecraft/EquippedItems.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Minecraft/EquippedItems.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/Minecraft/EquippedItems.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Minecraft/InventoryMinecraft.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/Minecraft/InventoryMinecraft.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Minecraft/InventoryMinecraft.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/Minecraft/InventoryMinecraft.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Minecraft/InventoryMinecraftCursorSlot.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/Minecraft/InventoryMinecraftCursorSlot.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Minecraft/InventoryMinecraftCursorSlot.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/Minecraft/InventoryMinecraftCursorSlot.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Minecraft/InventoryMinecraftSlot.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/Minecraft/InventoryMinecraftSlot.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Minecraft/InventoryMinecraftSlot.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/Minecraft/InventoryMinecraftSlot.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/SimpleList.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/SimpleList.meta -------------------------------------------------------------------------------- /Assets/Prefabs/SimpleList/InventoryList.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/SimpleList/InventoryList.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/SimpleList/InventoryList.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/SimpleList/InventoryList.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/SimpleList/InventoryListSlot.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/SimpleList/InventoryListSlot.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/SimpleList/InventoryListSlot.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Prefabs/SimpleList/InventoryListSlot.prefab.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/InventoryDemo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scenes/InventoryDemo.unity -------------------------------------------------------------------------------- /Assets/Scenes/InventoryDemo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scenes/InventoryDemo.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/InventoryEquipmentDemo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scenes/InventoryEquipmentDemo.unity -------------------------------------------------------------------------------- /Assets/Scenes/InventoryEquipmentDemo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scenes/InventoryEquipmentDemo.unity.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/InventoryChannel.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/InventoryChannel.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/InventoryChannel.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/InventoryChannel.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/InventoryUIChannel.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/InventoryUIChannel.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/InventoryUIChannel.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/InventoryUIChannel.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Boots.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Boots.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Boots.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Boots.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_ChestArmour.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_ChestArmour.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_ChestArmour.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_ChestArmour.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Helmet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Helmet.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Helmet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Helmet.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Pants.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Pants.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Pants.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Pants.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Weapon.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Weapon.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Weapon.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/ItemTypes/ItemType_Weapon.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/AppleItem.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/AppleItem.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/AppleItem.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/AppleItem.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/Cap.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/Cap.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/Cap.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/Cap.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/KeyItem.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/KeyItem.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/KeyItem.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/KeyItem.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/Shorts.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/Shorts.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/Shorts.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/Shorts.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/Sneakers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/Sneakers.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/Sneakers.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/Sneakers.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/Sword.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/Sword.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/Sword.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/Sword.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/TShirt.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/TShirt.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Inventory/Items/TShirt.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Inventory/Items/TShirt.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Stats.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Stats.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Stats/AttackStat.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Stats/AttackStat.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Stats/AttackStat.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Stats/AttackStat.asset.meta -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Stats/DefenseStat.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Stats/DefenseStat.asset -------------------------------------------------------------------------------- /Assets/ScriptableObjects/Stats/DefenseStat.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/ScriptableObjects/Stats/DefenseStat.asset.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common/Common.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/Common.asmdef -------------------------------------------------------------------------------- /Assets/Scripts/Common/Common.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/Common.asmdef.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common/CompositeScriptableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/CompositeScriptableObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common/CompositeScriptableObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/CompositeScriptableObject.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common/DataComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/DataComponent.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common/DataComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/DataComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common/Editor/Common.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/Editor/Common.Editor.asmdef -------------------------------------------------------------------------------- /Assets/Scripts/Common/Editor/Common.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/Editor/Common.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/Scripts/Common/Editor/CompositeScriptableObjectEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/Editor/CompositeScriptableObjectEditor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Common/Editor/CompositeScriptableObjectEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Common/Editor/CompositeScriptableObjectEditor.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Controllers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Controllers.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Controllers/EquippedItemsHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Controllers/EquippedItemsHolder.cs -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Controllers/EquippedItemsHolder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Controllers/EquippedItemsHolder.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Controllers/FollowMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Controllers/FollowMouse.cs -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Controllers/FollowMouse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Controllers/FollowMouse.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Controllers/InventoryChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Controllers/InventoryChannel.cs -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Controllers/InventoryChannel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Controllers/InventoryChannel.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Controllers/InventoryHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Controllers/InventoryHolder.cs -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Controllers/InventoryHolder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Controllers/InventoryHolder.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core/Inventory.cs -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core/Inventory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core/Inventory.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core/InventoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core/InventoryItem.cs -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core/InventoryItem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core/InventoryItem.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core/InventoryItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core/InventoryItemType.cs -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core/InventoryItemType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core/InventoryItemType.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core/InventorySlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core/InventorySlot.cs -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core/InventorySlot.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core/InventorySlot.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core/Utils.cs -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/Core/Utils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/Core/Utils.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/InventorySystem.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/InventorySystem.asmdef -------------------------------------------------------------------------------- /Assets/Scripts/Inventory/InventorySystem.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Inventory/InventorySystem.asmdef.meta -------------------------------------------------------------------------------- /Assets/Scripts/InventoryStatApplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/InventoryStatApplier.cs -------------------------------------------------------------------------------- /Assets/Scripts/InventoryStatApplier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/InventoryStatApplier.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Stats.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Stats.meta -------------------------------------------------------------------------------- /Assets/Scripts/Stats/Stat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Stats/Stat.cs -------------------------------------------------------------------------------- /Assets/Scripts/Stats/Stat.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Stats/Stat.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Stats/StatHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Stats/StatHolder.cs -------------------------------------------------------------------------------- /Assets/Scripts/Stats/StatHolder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Stats/StatHolder.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Stats/StatModifierDataComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Stats/StatModifierDataComponent.cs -------------------------------------------------------------------------------- /Assets/Scripts/Stats/StatModifierDataComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Stats/StatModifierDataComponent.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Stats/StatsSystem.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Stats/StatsSystem.asmdef -------------------------------------------------------------------------------- /Assets/Scripts/Stats/StatsSystem.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Stats/StatsSystem.asmdef.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Tests.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests/InventorySlotTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Tests/InventorySlotTest.cs -------------------------------------------------------------------------------- /Assets/Scripts/Tests/InventorySlotTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Tests/InventorySlotTest.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests/InventoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Tests/InventoryTest.cs -------------------------------------------------------------------------------- /Assets/Scripts/Tests/InventoryTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Tests/InventoryTest.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Tests/Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Tests/Tests.asmdef -------------------------------------------------------------------------------- /Assets/Scripts/Tests/Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/Tests/Tests.asmdef.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory/EquippedItemsUIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory/EquippedItemsUIController.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory/EquippedItemsUIController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory/EquippedItemsUIController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory/InventoryCursorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory/InventoryCursorController.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory/InventoryCursorController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory/InventoryCursorController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory/InventorySlotUIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory/InventorySlotUIController.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory/InventorySlotUIController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory/InventorySlotUIController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory/InventoryUIChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory/InventoryUIChannel.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory/InventoryUIChannel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory/InventoryUIChannel.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory/InventoryUIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory/InventoryUIController.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Inventory/InventoryUIController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Inventory/InventoryUIController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Stats.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Stats.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/Stats/StatUIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Stats/StatUIController.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/Stats/StatUIController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/Stats/StatUIController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIAssembly.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/UIAssembly.asmdef -------------------------------------------------------------------------------- /Assets/Scripts/UI/UIAssembly.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Scripts/UI/UIAssembly.asmdef.meta -------------------------------------------------------------------------------- /Assets/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/chest_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/chest_slot.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/chest_slot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/chest_slot.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/chest_slot.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/chest_slot.png~ -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/feet_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/feet_slot.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/feet_slot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/feet_slot.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/feet_slot.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/feet_slot.png~ -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/hand_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/hand_slot.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/hand_slot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/hand_slot.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/hand_slot.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/hand_slot.png~ -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/head_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/head_slot.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/head_slot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/head_slot.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/head_slot.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/head_slot.png~ -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/pants_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/pants_slot.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/pants_slot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/pants_slot.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/EmptySlots/pants_slot.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/EmptySlots/pants_slot.png~ -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/apple.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/apple.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/apple.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/cap.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/cap.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/cap.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/key.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/key.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/key.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/shorts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/shorts.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/shorts.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/shorts.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/sneaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/sneaker.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/sneaker.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/sneaker.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/sword.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/sword.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/sword.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/tshirt.png -------------------------------------------------------------------------------- /Assets/Sprites/Inventory/tshirt.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Assets/Sprites/Inventory/tshirt.png.meta -------------------------------------------------------------------------------- /Logs/ApiUpdaterCheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Logs/ApiUpdaterCheck.txt -------------------------------------------------------------------------------- /Logs/AssetImportWorker0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Logs/AssetImportWorker0.log -------------------------------------------------------------------------------- /Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/README.md -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyGameDev/InventorySystem/HEAD/UserSettings/EditorUserSettings.asset --------------------------------------------------------------------------------