PGRData/Script/matrix/xui/xuigoldenminer/game/component/XGoldenMinerComponentDirectionPoint.lua
2024-09-01 22:49:41 +02:00

19 lines
489 B
Lua

---@class XGoldenMinerComponentDirectionPoint
local XGoldenMinerComponentDirectionPoint = XClass(nil, "XGoldenMinerComponentDirectionPoint")
function XGoldenMinerComponentDirectionPoint:Ctor()
self.AngleList = {}
self.AngleTimeList = {}
self.CurAngleIndex = 0
self.CurTime = 0
---@type UnityEngine.Transform
self.AngleTransform = false
---@type UnityEngine.UI.Image
self.FillImage = false
end
return XGoldenMinerComponentDirectionPoint