ro-table/Asstes/Resources/Script/FrameWork/GUI/cell/ClothDressingCombineItemCell.txt
2025-06-04 05:02:57 +08:00

13 lines
426 B
Plaintext

autoImport("DressingCombineItemCell")
autoImport("ClothDressingCell")
local baseCell = autoImport("BaseCell")
ClothDressingCombineItemCell = class("ClothDressingCombineItemCell",DressingCombineItemCell)
function ClothDressingCombineItemCell:FindObjs()
self.childrenObjs = {};
local go = nil
for i=1,self.childNum do
go = self:FindChild("ClothDressingCell"..i);
self.childrenObjs[i] = ClothDressingCell.new(go)
end
end