worked on inventory system

This commit is contained in:
Nyx
2025-09-01 23:20:18 -06:00
parent 63535e3d42
commit f33c22ef73
26 changed files with 104 additions and 27 deletions

View File

@@ -0,0 +1,15 @@
[/Script/GameplayTags.GameplayTagsSettings]
ImportTagsFromConfig=True
WarnOnInvalidTags=True
ClearInvalidTags=False
AllowEditorTagUnloading=True
AllowGameTagUnloading=False
FastReplication=False
InvalidTagCharacters="\"\',"
+GameplayTagRedirects=(OldTagName="Faction.Test",NewTagName="Faction.NeutralTest")
NumBitsForContainerSize=6
NetIndexFirstBitSegment=16
+GameplayTagList=(Tag="Faction",DevComment="")
+GameplayTagList=(Tag="Faction.Cultists",DevComment="")
+GameplayTagList=(Tag="Faction.NeutralTest",DevComment="")

View File

@@ -0,0 +1,8 @@
[/Script/GameplayTags.GameplayTagsList]
GameplayTagList=(Tag="Crafting.Workbench.Blacksmith",DevComment="")
GameplayTagList=(Tag="Crafting.Workbench.Blacksmith.CraftTest1",DevComment="")
GameplayTagList=(Tag="Crafting.Workbench.Cooking",DevComment="")
GameplayTagList=(Tag="Crafting.Workbench.Stonecutting",DevComment="")
GameplayTagList=(Tag="Crafting.Workbench.Woodworking",DevComment="")
GameplayTagList=(Tag="Crafting.Workbench.Woodworking.CraftTest2",DevComment="")

View File

@@ -0,0 +1,30 @@
[/Script/GameplayTags.GameplayTagsList]
GameplayTagList=(Tag="Item",DevComment="")
GameplayTagList=(Tag="Item.Consumable",DevComment="")
GameplayTagList=(Tag="Item.Consumable.Ammo",DevComment="")
GameplayTagList=(Tag="Item.Consumable.Ammo.Arrow",DevComment="")
GameplayTagList=(Tag="Item.Consumable.Food",DevComment="")
GameplayTagList=(Tag="Item.Consumable.Potion",DevComment="")
GameplayTagList=(Tag="Item.Empty",DevComment="")
GameplayTagList=(Tag="Item.Equipment",DevComment="")
GameplayTagList=(Tag="Item.Equipment.Armor",DevComment="")
GameplayTagList=(Tag="Item.Equipment.Melee",DevComment="")
GameplayTagList=(Tag="Item.Equipment.Melee.Axe",DevComment="")
GameplayTagList=(Tag="Item.Equipment.Melee.Pickaxe",DevComment="")
GameplayTagList=(Tag="Item.Equipment.Melee.Sword",DevComment="")
GameplayTagList=(Tag="Item.Equipment.Offhand",DevComment="")
GameplayTagList=(Tag="Item.Equipment.Ranged",DevComment="")
GameplayTagList=(Tag="Item.Equipment.Ranged.Bow",DevComment="")
GameplayTagList=(Tag="Item.Material",DevComment="")
GameplayTagList=(Tag="Item.Material.Metal",DevComment="")
GameplayTagList=(Tag="Item.Material.Metal.Gold",DevComment="")
GameplayTagList=(Tag="Item.Material.Metal.Iron",DevComment="")
GameplayTagList=(Tag="Item.Material.Metal.Silver",DevComment="")
GameplayTagList=(Tag="Item.Material.Metal.Steel",DevComment="")
GameplayTagList=(Tag="Item.Material.Stone",DevComment="")
GameplayTagList=(Tag="Item.Material.Stone.Flint",DevComment="")
GameplayTagList=(Tag="Item.Material.Wood",DevComment="")
GameplayTagList=(Tag="Item.Material.Wood.Aspen",DevComment="")
GameplayTagList=(Tag="Item.Material.Wood.Maple",DevComment="")
GameplayTagList=(Tag="Item.Material.Wood.Oak",DevComment="")

View File