• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 821 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)

221. 音频-播放演示 [ 66%]

...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

222. 鼠标交互-双指旋转(多点触控) [ 66%]

...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

223. 位图字体的排版与注册点问题 [ 66%]

...宽高。 或者   如果在已知宽高的情况下,要设置过input.size(),或者input.width和input.height后去取input.width和input.height才是对的(否则宽高值获取不到,均为0)。    2016-06-18 0 3 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要...

来源: Laya_社区 发布时间: 20160617

224. UI-FontClip [ 66%]

...]); 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

225. DOM元素-表单输入 [ 66%]

...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

226. CPU优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 66%]

...于其需要计算边界,不适合频繁调用。 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

227. Laya2.8.0 beta 创建一个新项目,然后添加laya.cannonPhysics.js库之类的就各种报错 [ 66%]

... 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

228. 关于laya无法缓存非图片、声音文件bug [ 66%]

...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

229. 服务器websocket c++发送二进制类型包,客户端没有任何事件响应 [ 65%]

...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

230. 循环添加一组按钮事件无法正常使用 [ 65%]

...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