Clothings lots config rework

This commit is contained in:
2026-05-26 23:24:53 +03:00
parent 878060d7ac
commit 9792ede1e8
25 changed files with 159 additions and 279 deletions
@@ -17,7 +17,7 @@ struct NAKEDDESIRE_API FClothingSlotData
}
UPROPERTY(EditDefaultsOnly, Category = "Clothing")
UTexture2D Icon;
TObjectPtr<UTexture2D> Icon;
UPROPERTY(EditDefaultsOnly, Category = "Clothing")
FText Name;
@@ -30,5 +30,5 @@ class NAKEDDESIRE_API UClothingSlotsData : public UPrimaryDataAsset
public:
UPROPERTY(EditDefaultsOnly, Category = "Clothing")
TMap<EClothingSlotType, FClothingSlotData> ClothingSlotsData;
TMap<EClothingSlotType, FClothingSlotData> Slots;
};