├── .gitignore ├── Fantasy Treasure Pack Lite ├── Mesh │ ├── Materials │ │ └── texture_04.mat │ └── sack_010.fbx └── Texture │ └── texture_04.png ├── GameData ├── Loot Bag Invisible.asset ├── Loot Bag Item Filter Table.asset ├── Loot Bag Visible.asset ├── Orc Item Drop Table 1.asset ├── Orc Item Drop Table 2.asset ├── Orc Item Drop Table.asset ├── OrcLootItemTable1.asset └── OrcLootItemTable2.asset ├── LICENSE ├── README-OLD.md ├── README.md ├── Resources ├── Effects │ └── LootSparkle.prefab ├── LootBags │ ├── LootBagEntityInvisible.prefab │ └── LootBagEntityVisible.prefab └── UI │ ├── UIItemIcon_WithDragHandler_LootBag.prefab │ └── UILootBagStorageDialog.prefab ├── Screenshots ├── BlockControllerUIs.png ├── CanvasGameplayDebugMode.png ├── CanvasGameplayScriptReplace.png ├── CanvasGameplay_Dialogs.png ├── CanvasGameplay_UILootBagStorageDialog.png ├── GameDatabaseLootBagItems.png ├── GameInstance.png ├── LootBag.png ├── LootBagRewards.png ├── LootButton.png ├── LootButtonActivator.png ├── LootSettings.png ├── MonsterCharacterLootSettings.png ├── MonsterCharacterSettings.png ├── PlayerCharacterLootSettings.png └── UILootItems.png └── Scripts ├── ActivateButtonActivator_LootBag.cs ├── BaseCharacterEntity_LootBag.cs ├── BaseCharacter_LootBag.cs ├── BaseGameNetworkManager_LootBag.cs ├── BaseMonsterCharacterEntity_LootBag.cs ├── BasePlayerCharacterEntity_LootBag.cs ├── DefaultClientStorageHandlers_LootBag.cs ├── GameInstance_LootBag.cs ├── GameNetworkingConsts_LootBag.cs ├── IClientStorageHandlers_LootBag.cs ├── IServerStorageHandlers_LootBag.cs ├── IServerStorageMessageHandlers_LootBag.cs ├── LanRpgServerStorageHandlers_LootBag.cs ├── LanRpgServerStorageMessageHandlers_LootBag.cs ├── LootBagEntity.cs ├── LootBagFilterItem.cs ├── LootBagItemFilterTable.cs ├── LootBagItemTable.cs ├── LootBagStorageActions.cs ├── LootItemTable.cs ├── MMOServerStorageHandlers_LootBag.cs ├── MMOServerStorageMessageHandlers_LootBag.cs ├── MonsterCharacter_LootBag.cs ├── PlayerCharacter_LootBag.cs ├── UICharacterItem_LootBag.cs ├── UILootBagItems.cs ├── UIMouseClickHandler.cs └── UISceneGameplay_LootBag.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/.gitignore -------------------------------------------------------------------------------- /Fantasy Treasure Pack Lite/Mesh/Materials/texture_04.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Fantasy Treasure Pack Lite/Mesh/Materials/texture_04.mat -------------------------------------------------------------------------------- /Fantasy Treasure Pack Lite/Mesh/sack_010.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Fantasy Treasure Pack Lite/Mesh/sack_010.fbx -------------------------------------------------------------------------------- /Fantasy Treasure Pack Lite/Texture/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Fantasy Treasure Pack Lite/Texture/texture_04.png -------------------------------------------------------------------------------- /GameData/Loot Bag Invisible.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/GameData/Loot Bag Invisible.asset -------------------------------------------------------------------------------- /GameData/Loot Bag Item Filter Table.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/GameData/Loot Bag Item Filter Table.asset -------------------------------------------------------------------------------- /GameData/Loot Bag Visible.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/GameData/Loot Bag Visible.asset -------------------------------------------------------------------------------- /GameData/Orc Item Drop Table 1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/GameData/Orc Item Drop Table 1.asset -------------------------------------------------------------------------------- /GameData/Orc Item Drop Table 2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/GameData/Orc Item Drop Table 2.asset -------------------------------------------------------------------------------- /GameData/Orc Item Drop Table.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/GameData/Orc Item Drop Table.asset -------------------------------------------------------------------------------- /GameData/OrcLootItemTable1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/GameData/OrcLootItemTable1.asset -------------------------------------------------------------------------------- /GameData/OrcLootItemTable2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/GameData/OrcLootItemTable2.asset -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/LICENSE -------------------------------------------------------------------------------- /README-OLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/README-OLD.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Effects/LootSparkle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Resources/Effects/LootSparkle.prefab -------------------------------------------------------------------------------- /Resources/LootBags/LootBagEntityInvisible.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Resources/LootBags/LootBagEntityInvisible.prefab -------------------------------------------------------------------------------- /Resources/LootBags/LootBagEntityVisible.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Resources/LootBags/LootBagEntityVisible.prefab -------------------------------------------------------------------------------- /Resources/UI/UIItemIcon_WithDragHandler_LootBag.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Resources/UI/UIItemIcon_WithDragHandler_LootBag.prefab -------------------------------------------------------------------------------- /Resources/UI/UILootBagStorageDialog.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Resources/UI/UILootBagStorageDialog.prefab -------------------------------------------------------------------------------- /Screenshots/BlockControllerUIs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/BlockControllerUIs.png -------------------------------------------------------------------------------- /Screenshots/CanvasGameplayDebugMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/CanvasGameplayDebugMode.png -------------------------------------------------------------------------------- /Screenshots/CanvasGameplayScriptReplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/CanvasGameplayScriptReplace.png -------------------------------------------------------------------------------- /Screenshots/CanvasGameplay_Dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/CanvasGameplay_Dialogs.png -------------------------------------------------------------------------------- /Screenshots/CanvasGameplay_UILootBagStorageDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/CanvasGameplay_UILootBagStorageDialog.png -------------------------------------------------------------------------------- /Screenshots/GameDatabaseLootBagItems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/GameDatabaseLootBagItems.png -------------------------------------------------------------------------------- /Screenshots/GameInstance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/GameInstance.png -------------------------------------------------------------------------------- /Screenshots/LootBag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/LootBag.png -------------------------------------------------------------------------------- /Screenshots/LootBagRewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/LootBagRewards.png -------------------------------------------------------------------------------- /Screenshots/LootButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/LootButton.png -------------------------------------------------------------------------------- /Screenshots/LootButtonActivator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/LootButtonActivator.png -------------------------------------------------------------------------------- /Screenshots/LootSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/LootSettings.png -------------------------------------------------------------------------------- /Screenshots/MonsterCharacterLootSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/MonsterCharacterLootSettings.png -------------------------------------------------------------------------------- /Screenshots/MonsterCharacterSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/MonsterCharacterSettings.png -------------------------------------------------------------------------------- /Screenshots/PlayerCharacterLootSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/PlayerCharacterLootSettings.png -------------------------------------------------------------------------------- /Screenshots/UILootItems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Screenshots/UILootItems.png -------------------------------------------------------------------------------- /Scripts/ActivateButtonActivator_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/ActivateButtonActivator_LootBag.cs -------------------------------------------------------------------------------- /Scripts/BaseCharacterEntity_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/BaseCharacterEntity_LootBag.cs -------------------------------------------------------------------------------- /Scripts/BaseCharacter_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/BaseCharacter_LootBag.cs -------------------------------------------------------------------------------- /Scripts/BaseGameNetworkManager_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/BaseGameNetworkManager_LootBag.cs -------------------------------------------------------------------------------- /Scripts/BaseMonsterCharacterEntity_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/BaseMonsterCharacterEntity_LootBag.cs -------------------------------------------------------------------------------- /Scripts/BasePlayerCharacterEntity_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/BasePlayerCharacterEntity_LootBag.cs -------------------------------------------------------------------------------- /Scripts/DefaultClientStorageHandlers_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/DefaultClientStorageHandlers_LootBag.cs -------------------------------------------------------------------------------- /Scripts/GameInstance_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/GameInstance_LootBag.cs -------------------------------------------------------------------------------- /Scripts/GameNetworkingConsts_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/GameNetworkingConsts_LootBag.cs -------------------------------------------------------------------------------- /Scripts/IClientStorageHandlers_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/IClientStorageHandlers_LootBag.cs -------------------------------------------------------------------------------- /Scripts/IServerStorageHandlers_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/IServerStorageHandlers_LootBag.cs -------------------------------------------------------------------------------- /Scripts/IServerStorageMessageHandlers_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/IServerStorageMessageHandlers_LootBag.cs -------------------------------------------------------------------------------- /Scripts/LanRpgServerStorageHandlers_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/LanRpgServerStorageHandlers_LootBag.cs -------------------------------------------------------------------------------- /Scripts/LanRpgServerStorageMessageHandlers_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/LanRpgServerStorageMessageHandlers_LootBag.cs -------------------------------------------------------------------------------- /Scripts/LootBagEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/LootBagEntity.cs -------------------------------------------------------------------------------- /Scripts/LootBagFilterItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/LootBagFilterItem.cs -------------------------------------------------------------------------------- /Scripts/LootBagItemFilterTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/LootBagItemFilterTable.cs -------------------------------------------------------------------------------- /Scripts/LootBagItemTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/LootBagItemTable.cs -------------------------------------------------------------------------------- /Scripts/LootBagStorageActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/LootBagStorageActions.cs -------------------------------------------------------------------------------- /Scripts/LootItemTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/LootItemTable.cs -------------------------------------------------------------------------------- /Scripts/MMOServerStorageHandlers_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/MMOServerStorageHandlers_LootBag.cs -------------------------------------------------------------------------------- /Scripts/MMOServerStorageMessageHandlers_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/MMOServerStorageMessageHandlers_LootBag.cs -------------------------------------------------------------------------------- /Scripts/MonsterCharacter_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/MonsterCharacter_LootBag.cs -------------------------------------------------------------------------------- /Scripts/PlayerCharacter_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/PlayerCharacter_LootBag.cs -------------------------------------------------------------------------------- /Scripts/UICharacterItem_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/UICharacterItem_LootBag.cs -------------------------------------------------------------------------------- /Scripts/UILootBagItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/UILootBagItems.cs -------------------------------------------------------------------------------- /Scripts/UIMouseClickHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/UIMouseClickHandler.cs -------------------------------------------------------------------------------- /Scripts/UISceneGameplay_LootBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaughanb/UnityMultiplayerARPG_LootBag/HEAD/Scripts/UISceneGameplay_LootBag.cs --------------------------------------------------------------------------------