[Solved] Equipment UI tool in UI Designed use the setting of `Inventory Grid` instead of that of `Equipment`

Justus

Member
Reproduce Steps:
1. Set different `Item View Set` for `Equipment` and `Inventory Grid` tab tool.
1651564869846.png
2. set different `Item View Prefab` for them
1651564920627.png
1651564937299.png
3. Create GUI via `Inventory Grid` and `Equipment` tab. The setting for equipment didn't work.
 
Thank you for the detailed bug report.

I fixed it by changing line 133 in the EquipmentDesigner.cs script:
Code:
            drawer.CategoryItemViewSet = UIDesignerSchema.EquipmentItemViewSet;

Let me know if that solves it for you (You will need to create a new Equipment panel)
Of course if you can change the ItemViewSet manually since the reference will stay. UI Designer will not change things automatically in your UI without your knowledge
 
Last edited:
Yes, this change fixed this issue. And this will be included in UIS' future update right?(so that I don't need to afraid my hot fix will lost in the future
 
Top