我正在使用 cocos Lua v4。我正在寻找如何在 Lua 中创建脊椎。但不幸的是,当我在 Spine 部分打开 Lua Test 时。它没有显示脊椎,我收到了这个错误
这是一个错误吗?如果不是,我该如何修复它以便我可以在 Lua 中创建脊椎?谢谢
编辑 1 这里如何在 cocos lua v4 中制作脊椎
require "cocos.spine.SpineConstants"
function SpineTestLayerNormal:init()
local skeletonNode = sp.SkeletonAnimation:create("spine/spineboy-ess.json", "spine/spineboy.atlas", 0.6)
end
在cocos/spine/SpineConstants
if nil == sp then
return
end
sp.EventType =
{
ANIMATION_START = 0,
ANIMATION_INTERRUPT = 1,
ANIMATION_END = 2,
ANIMATION_COMPLETE = 3,
ANIMATION_DISPOSE = 4,
ANIMATION_EVENT = 5,
}