环境:chrome 86.0.4240.80(正式版本) (x86_64)
creator版本:2.4.3
主要代码:
cc.resources.loadDir加载一个图片文件夹
cc.AnimationClip.createWithSpriteFrames用图片创建帧动画
this.animComponent = this.animNode.getComponent(cc.Animation);
cc.resources.loadDir('shot_goal', cc.SpriteFrame, null, (err, spriteFrames) => {
if (!err) {
console.log(spriteFrames);
let clip = cc.AnimationClip.createWithSpriteFrames(spriteFrames, 30);
clip.name = 'shot_goal';
clip.wrapMode = cc.WrapMode.Normal;
clip.speed = 1.5;
this.animComponent.addClip(clip);
this.animComponent.play('shot_goal');
}
});
1.调试模式run项目一切正常
2.去掉调试模式发布项目 运行 动画疯狂鬼畜
frameAnim.zip (2.0 MB)
求大佬帮忙看看 感谢