大约有 57 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0029 秒)
...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
...误了 Matter.Events.on(this.engine, "collisionStart", this.collisionStart.bind(this)); 2018-12-20 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 冰水blue 相关问题 sprite旋转以后,但是原来碰撞检测rect没有旋转 Laya2...
来源: Laya_社区 发布时间: 20180524
...o matching function for call to 'laya::JCFileRes::setOnReadyCB(std::__1::__bind<bool (laya::JSAudio::*)(void*, std::__1::weak_ptr<int>), laya::JSAudio*, std::__1::placeholders::__ph<1>&, std::__1::weak_ptr<int>&>)' res->setOnReadyCB( std::bind(&JSAu...
来源: Laya_社区 发布时间: 20211111
...动态改变的,你的解决方法有两个,第一个就是this.func.bind(this),第二个就是用new Handler(this,func) 2017-02-08 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 相关问题 两个对象new了一个相同的对象,调用...
来源: Laya_社区 发布时间: 20170207
...ved; // connect the client this.client.connect({ onSuccess: this.onConnect.bind(this) }); } 但是调试的时候控制台显示Client未定义。 LayaYX • 2018-09-04 18:16 已解决
来源: Laya_社区 发布时间: 20180903
...t.showMsgFunc = function () { this.text = "ShowMsg"; this.color = "red"; }.bind(_lab); })); ``` 最后了来看下效果,如图2。 ![](img/2.gif)(图2)
来源: Laya2.0_文档 发布时间: 20210715
...t.showMsgFunc = function () { this.text = "ShowMsg"; this.color = "red"; }.bind(_lab); })); ``` 最后了来看下效果,如图2。 ![](img/2.gif)(图2)
来源: Laya2.0_文档 发布时间: 20210715
...分享 微博 QZONE 微信 fengzv 赞同来自: js不是这样用的 要么bind要么箭头函数 2018-09-13 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 chasel 相关问题 微信关系链:LayaAir引擎针对微信小游戏好友关...
来源: Laya_社区 发布时间: 20180907
...现圆形头像会有警告出现 警告如下:WebGL: INVALID_OPERATION: bindTexture: attempt to bind a deleted texture 代码示例: this.img = new Laya.Image(); this.img.loadImage("url"); const mask = new Laya.Sprite(); mask.graphics.drawCircle(75, 75, 75, "#ffffff"); this.img.mask = mask; ...
来源: Laya_社区 发布时间: 20170106