大约有 821 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
Laya_社区(448) Laya3.0_api(77) laya_api(70) Laya2.0_api(64) Laya2.0_文档(50) Laya2.0_示例(39) Laya_示例(37) Laya3.0_文档(36)
...Button(label) { var w = 110; var h = 40; var button = new Sprite(); button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2, 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(button); return button; } function onPlayMusic(e) { console.log("...
来源: Laya_示例 发布时间: 20241118
...e(); var w = 200, h = 300; sp.graphics.drawRect(0, 0, w, h, "#FF7F50"); sp.size(w, h); sp.pivot(w / 2, h / 2); sp.pos(Laya.stage.width / 2, Laya.stage.height / 2); Laya.stage.addChild(sp); sp.on(Event.MOUSE_DOWN, this, onMouseDown); } function onMouseDown(e) { var touches = e.touches; if (touches &&...
来源: Laya_示例 发布时间: 20241118
...宽高。 或者 如果在已知宽高的情况下,要设置过input.size(),或者input.width和input.height后去取input.width和input.height才是对的(否则宽高值获取不到,均为0)。 2016-06-18 0 3 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要...
来源: Laya_社区 发布时间: 20160617
...]); var clipnum1 = new FontClip(assets[0]); clipnum.pos(240, 500); clipnum.size(250, 50); clipnum.sheet = "0123456789"; clipnum.value = "114499"; clipnum.spaceY = 10; TestClipNum.pos(200, 400); TestClipNum.sheet = "0123456789"; TestClipNum.value = "0123456789"; clipnum1.pos(150, 200); clipnum1.direc...
来源: Laya2.0_示例 发布时间: 20241118
...ALL; Laya.stage.bgColor = "#fff"; this.form = new Laya.Sprite(); this.form.size(250,120); this.form.pos((Laya.stage.width - this.form.width) / 2, (Laya.stage.height - this.form.height) / 2); Laya.stage.addChild(this.form); this.rowHeight = 30; this.rowSpacing = 10; let rowHeightDelta = this.rowSpaci...
来源: Laya2.0_示例 发布时间: 20241118
...于其需要计算边界,不适合频繁调用。 1. 设置容器的autoSize为true。 ```typescript var sp=new Laya.Sprite(); sp.autoSize=true; sp.graphics.drawRect(0,0,100,100,"#FF0000"); Laya.stage.addChild(sp); ``` 上述代码可以在运行时正确获取宽高。autoSize在获取宽高并...
来源: Laya2.0_文档 发布时间: 20210714
... Invalid or unexpected token laya.core.js:21824 ShaderCompile use time:3 size:32274/1165 laya.core.js:21824 ShaderCompile use time:4 size:167/407 laya.core.js:21110 Uncaught Can not find class laya.physics.BoxCollider 然后值引用下面这几个库,则报附件的图片错误:laya.d3.j...
来源: Laya_社区 发布时间: 20200825
...eMgr.fakeObj[fileurlkey] = { md5: tempFileName, readyUrl: readyUrl, size: 0, times: Laya.Browser.now(), encoding: encoding }; 而且这行代码 MiniFileMgr.fakeObj[fileurlkey] = { md5: tempFileName, readyUrl: readyUrl, size: 0, times: Laya.Browser.now(), encoding: enc...
来源: Laya_社区 发布时间: 20200529
...Msg, WS_TEXT_FRAME);//就是加上个2字节头 int32_t send_size = m_socket->send(asio::buffer(outMsg));//客户端能收到 std::string body_str; pbMsg.SerializeToString(&body_str);//protoBuf消息转二进制流 std::string outMsg2; ...
来源: Laya_社区 发布时间: 20170822
...exture(Laya.loader.getRes(Res),tx-45,ty-45); b.size(92,96); b.name = "egg"+i; Laya.stage.addChild(b); b.on(Event.MOUSE_DOWN, this, mouseHandler); b.on(Event.MOU...
来源: Laya_社区 发布时间: 20170517