egret spine 对接实现

SkeletonAnimation 继承自 egret.DisplayObjectContainer

里面监听了 egret.Event.ENTER_FRAME事件

他里面有一个 SkeletonRenderer

这个是渲染用的

他会靠这个代码驱动

this.renderer.update(now - this.lastTime);

typescript 复制代码
public update(dt: number) {
   this.state.update(dt);
    this.state.apply(this.skeleton);
    this.skeleton.updateWorldTransform();
    const drawOrder = this.skeleton.drawOrder;
    for (let i = 0; i < drawOrder.length; i++) {
        const index = drawOrder[i].data.index;
        const renderer = this.slotRenderers[index];
        if (renderer.zIndex !== i) {
            renderer.zIndex = i;
        }
        renderer.renderSlot(this);
    }
    this.clipper.clipEnd();
}

SkeletonRenderer

RegionAttachment里的computeWorldVertices方法

这个是计算在世界坐标系里的位置

他需要这几个参数

bash 复制代码
bone: Bone, worldVertices: ArrayLike<number>, offset: number, stride: number

看描述

bash 复制代码
/** Transforms the attachment's four vertices to world coordinates.
*
* See [World transforms](http://esotericsoftware.com/spine-runtime-skeletons#World-transforms) in the Spine
* Runtimes Guide.
* @param worldVertices The output world vertices. Must have a length >= `offset` + 8.
* @param offset The `worldVertices` index to begin writing values.
* @param stride The number of `worldVertices` entries between the value pairs written. */

worldVertices 是输出用的

offset 代表数组写入从几开始

stride 代表写入一组数据后 跳过几个索引

一般来说 到这里的bone 已经处理过数据了 他里面的worldX 和 worldY可以直接使用了

相关推荐
CN-Dust1 个月前
【Spine】引入PhotoshopToSpine脚本
spine
是嘟嘟啊2 个月前
【Unity】在Unity 3D中使用Spine开发2D动画
3d·unity·spine·spine pro·龙骨·dragonbones·spine unity
小张不爱写代码2 个月前
Unity 使用Spine动画切换时有残影
unity·spine
类人_猿3 个月前
Unity中对Spine动画播放、暂停、事件处理管理类
unity·游戏引擎·spine·spine管理类
GNWCE4 个月前
【Spine学习15】变换约束
学习·spine
GNWCE5 个月前
【Spine学习10】之 创建新骨骼时,自动绑定图片和插槽的快捷方式
学习·spine
GNWCE5 个月前
【Spine学习09】之导入皮肤两种方式[skin]
学习·spine
GNWCE5 个月前
【Spine学习12】之 事件帧
学习·spine
GNWCE5 个月前
【Spine学习08】之短飘,人物头发动效制作思路
学习·spine
就这样吧_7 个月前
cocos creator 实现spine局部换装
cocos creator·spine·局部换装