大约有 66 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0032 秒)
...i",LayaWrap.creatHandlerCall(this,(aniClip)=>{ //创建动作状态 let state1 = new Laya.AnimatorState(); //动作名称 state1.name = "hello"; //动作播放起始时间 state1.clipStart = 0 / 90; //动作播放结束时间 state1.clipEnd = 90/ 90; //设置动作 state1.clip = aniClip; //设置...
来源: Laya_社区 发布时间: 20190613
...直接贴代码吧 // 各种浏览器兼容 var hidden:String = "hidden", state:String = "visibilityState", visibilityChange:String = "visibilitychange"; var document:* = window.document; if (typeof document.hidden !== "undefined") { visibilityChange = "visibilitychange"; state = "visibilityState"; ...
来源: Laya_社区 发布时间: 20171011
...& this._clickHandler.run(); return; } !this._selected && (this.state = Button.stateMap[e.type]); }上面逻辑当clickHander只执行一次的时候逻辑上有bug,Hander的run执行的时候如果只执行一次会被回收,这个时候button又持有引用,如果其他地方用...
来源: Laya_社区 发布时间: 20191112
...ya.PhasorSpriter3D(); } MousePickingScene.prototype.lateRender = function (state) { MousePickingScene.__super.prototype.lateRender.call(state); //从屏幕空间生成射线 this.point.elements[0] = Laya.stage.mouseX; this.point.elements[1] = Laya.stage.mouseY; this.camera.viewportPointToRay(this.po...
来源: Laya_社区 发布时间: 20170323
...i", Laya.Handler.create(null, function(aniClip) { //创建动作状态 var state1 = new Laya.AnimatorState(); //动作名称 state1.name = "hello"; //动作播放起始时间 state1.clipStart = 0 / 581; //动作播放结束时间 state1.clipEnd = 581 / 581; //设置动作 state1.clip = aniClip; //...
来源: Laya2.0_文档 发布时间: 20210715
...e._initialize.call(this, owner); } CmpScript.prototype._update = function (state) { CmpScript.__super.prototype._update.call(this, state); if (this.owner) { this.x += 1; var translate = new Laya.Vector3(this.x, 500, 0); Laya.Utils3D.convert3DCoordTo2DScreenCoord(translate, convertTranslate); this.ow...
来源: Laya_社区 发布时间: 20161126
...但不是必现的这是代码 //swf动画 createSWFAnimoton(strSWF,strImg,state):any{ this.swfAni = new Laya.MovieClip(); this.swfAni.load(strSWF,true,strImg); this.swfAni.x = (Laya.stage.width -1900) / 2; this.swfAni.y = (Laya.stage.height - 1200) / 2; this.swfAni.zOrder = 3; this.swfAni.loop = fa...
来源: Laya_社区 发布时间: 20170505
... spine-core-3.7.js问题: 代理里有语法错误,state !== status }, (state, responseText) => { this.errors[path] = `Couldn't load texture atlas ${path}: status ${status}, ${responseText}`; if (error) error(path, `Couldn't load texture atlas ${path}: status ${status...
来源: Laya_社区 发布时间: 20220122
...不是var lastMouseX = NaN; CameraMoveScript.prototype._update = function (state){...}像这句,prototype是什么,_update 又是什么,这些都可以直接点出来的,但又查不到API,怎么学?还有state这参数又是什么,请问我要在哪查找或者说怎样查找到这类...
来源: Laya_社区 发布时间: 20170315
... return NetSocket._instance; } private state_: EConnectionState = EConnectionState.eDistconnected; private initSocket(): void { this.on(Laya.Event.OPEN, this, this.onConected); this.on(Laya.Event.ERROR, this, this.on...
来源: Laya_社区 发布时间: 20170602