大约有 42 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
使用bind移除事件报错 在侦听事件中添加了bind,如下: this.parent["timer1"].addEventListener(TimerEvent.TIMER,bind(this,this.timer))? 2015-11-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 c...
来源: Laya_社区 发布时间: 20151110
bind函数的作用 2018-01-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 qian 赞同来自: http://blog.csdn.net/xc_tsao/article/details/44132965 2018-01-30 0 7 分享 微博 QZONE 微信 a15715740412 赞同...
来源: Laya_社区 发布时间: 20180130
...内容: 1. 可绑定内容的骨骼动画 export default class BindSkeleton extends Laya.Skeleton { private __bindList:BindSource[]; constructor(){ super(); this.__bindList=[]; } /** * 绑定 * @param source */ bind(source:BindSource):void{ let index:number=this.__bindList.indexOf...
来源: Laya_社区 发布时间: 20190805
...c function startLoop() { Laya.timer.loop(2000,this,this.onLoop.bind(this)); } private function onLoop():void { if(this.stop){ Laya.timer.clear(this,this.onLoop.bind(this)); // } } 2017-11-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...
来源: Laya_社区 发布时间: 20171108
...用域变成了window,所以你需要绑定下作用域。onAssetsLoaded.bind(this) 2017-09-27 1 4 分享 微博 QZONE 微信 Monica - 知识达人 赞同来自: 你AS中是怎么写的? 2017-09-27 0 1 分享 微博 QZONE 微信 ljy328803417 赞同来自: 如图 2017-09-27 0 7 分享 微博 QZON...
来源: Laya_社区 发布时间: 20170927
...this._callbackFuncObj.addCallbackFunc(1,(this.canvasBeginRenderFromNative).bind(this)); this._callbackFuncObj.addCallbackFunc(2,(this.canvasEndRenderFromNative).bind(this)); this._datai32[ /*laya.display.SpriteConst.POSCANVAS_CALLBACK_FUN_ID*/56]=1; th...
来源: Laya_社区 发布时间: 20190612
...你添加回调方法得地方,改下也可以。,方法后面增加.bind(this) 2017-01-18 0 0 分享 微博 QZONE 微信 xuhu1518 赞同来自: RequestConfig.instance.getRequestConfig(String(0), requestCallback.bind(this)); 可以了 2017-01-19 0 0 分享 微博 QZONE 微信 为什么被折叠...
来源: Laya_社区 发布时间: 20170118
...pleteHandler(e:Object):void{audioContext.decodeAudioData(e,decodeAudioData.bind(this));}private function decodeAudioData(buffer:Object):void{audioBufferSourceNode = audioContext.createBufferSource();audioBufferSourceNode.connect(analyser);analyser.connect(audioContext.destination);audioBufferSourceN...
来源: Laya_社区 发布时间: 20181023
...rt = htons(8080); sin.sin_addr.S_un.S_addr = INADDR_ANY; if (bind(slisten, (LPSOCKADDR)&sin, sizeof(sin)) == SOCKET_ERROR) { printf("bind error !"); } //开始监听 if (listen(slisten, 5) == SOCKET_ERROR) { printf("...
来源: Laya_社区 发布时间: 20170602
...两种方案处理这个问题: 第一个: joy.callBackFun = onMyRole.bind(this); 第二个: joy.callBackFun = Handler.create(this,onMyRole); 2017-06-11 1 0 分享 微博 QZONE 微信 170*****650 赞同来自: 已解决 非常感谢 2017-06-12 0 0 分享 微博 QZONE 微信 为什么被折...
来源: Laya_社区 发布时间: 20170610