接入Spine

This commit is contained in:
2025-09-23 02:52:33 +08:00
parent 89d751ac34
commit c90b46f430
291 changed files with 32686 additions and 473 deletions

View File

@ -0,0 +1,11 @@
local BusyPlayerRole = {}
function BusyPlayerRole:UpdateMoveDirection(InDirection)
if(InDirection.Y > 0) then
self["SpineAnimationComponent"]:SetSkin("front/move")
else
self["SpineAnimationComponent"]:SetSkin("back/move")
end
end
return Class(nil, nil, BusyPlayerRole)