[]Touch接口缺少stageX,stageY

根据官方DEMO “鼠标交互--双指旋转(多点触控)”有这样的代码:
private onMouseDown(e: Event): void {
            var touches: Array<any> = e.touches;

            if (touches && touches.length == 2) {
                this.preRadian = Math.atan2(
                    touches[0].stageY - touches[1].stageY,
                    touches[0].stageX - touches[1].stageX);

                Laya.stage.on(Event.MOUSE_MOVE, this, this.onMouseMove);
            }
        }
 
在微信调试时取出的touches是一个Touch数组,通过chrome看Touch类是包含stageX/stageY的,但lib.d.ts中声明的Touch接口中没有stageX/stageY,因此如果做强类型判断时编译不过。目前我的解决方法是在lib.d.ts的Touch声明里加入这两个变量。
已邀请:

qian

赞同来自:

这个返回的Touch数组是一个event

TIM图片20180301182630.png

我们的stageX,和stageY事件是在event里面

TIM图片20180301182710.png

你可以搜一下event这个类看一下

brooshe

赞同来自:

额。。 这是我在微信开发者工具里面截的

e.png

 
另外看了下Event类,touches是从nativeEvent.touches而来,再往上层跟nativeEvent是MouseManager.runEvent时_eventList中的元素而来,再之后貌似是canvas dispatch了,没具体看到类型

要回复问题请先

商务合作
商务合作