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

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

851. Sprite-屏幕截图 [ 63%]

...55); btn.name = name; btn.right = 10; btn.top = index * (btn.height + 10); return btn; } onLoaded(){ for (let index = 0; index = ["res/button.png", "res/button.png", "res/button.png"]; private nameArr:Array = ["canvas截图","sprite截图","清理"]; private _canvas:HTMLCanvasElement; private aimSp:...

来源: Laya2.0_示例 发布时间: 20241120

852. laya接入fairyGUI的时候资源加载方式? [ 63%]

...ce(): FguiResMgr { if (!this._instance) this._instance = new FguiResMgr(); return this._instance; } /**加载优先级,越小越优先,最小为0 */ private priority: number = 1; /** * 混合加载 * @param resKey * @param otherLoadData * @param complete * @param progress * @param priority */ pu...

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

853. 【经验分享】如何让ts项目支持装饰器语法,以及自动化发布相关的一些东西 [ 63%]

...Location(err, pos, curSource, id); err.id = id; err.hook = 'transform'; // return pluginContext.error(err); },该方法虽然可以解决 tslib 找不到的问题,并且编译后输出的文件可以正常运行,但是也屏蔽了其他错误,如果代码中有其他错误,最终输出的文...

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

854. UI-RadioGroup [ 63%]

...Handler = new Handler(this, this.onSelectChange); Laya.stage.addChild(rg); return rg; } private onSelectChange(index: number): void { console.log("你选择了第 " + (index + 1) + " 项"); } } } new laya.UI_RadioGroup();package { import laya.display.Stage; import laya.ui.RadioGroup; import laya.uti...

来源: Laya_示例 发布时间: 20241120

855. UI-RadioGroup [ 63%]

...Handler = new Handler(this, this.onSelectChange); Laya.stage.addChild(rg); return rg; } private onSelectChange(index: number): void { console.log("你选择了第 " + (index + 1) + " 项"); } } } new laya.UI_RadioGroup();package { import laya.display.Stage; import laya.ui.RadioGroup; import laya.uti...

来源: Laya2.0_示例 发布时间: 20241120

856. list 下 生成图片模糊 [ 63%]

... (cell, idx) { var data = this.bigList.array; if (idx >= data.length) { return; } cell.removeChildren(); var root = cell.getChildByName('root'); if (!root) { root = new Sprite(); root.pos(0, 0); root.name = "root"; cell.addChild(root); } 。。。。。 生成的 图片 从一个场景中回来...

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

857. swf转成H5资源显示超出原有范围 [ 63%]

...           trace("content is null.");                 return;             }                          var appDomain:ApplicationDomain = ApplicationDomain.currentDomain;             if (!appDomain || !appDomain.hasDefinition("Dragon_5"))     ...

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

858. SVG渐变精灵的扩展脚本继承了多个精灵, 在safari环境下重叠了渲染 [ 63%]

...      };         _proto.getLangId = function () {             return this.langId;         }         _proto.setGradientText = function () {             this.graphics.clear();             let data = '';             data += 'data:image/svg+xml,' + '<svg xmlns="...

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

859. 真机测试时 有3d模型的界面尺寸就会错乱 [ 62%]

...ct.x *= ratioW rect.y *= ratioH rect.width *= ratioW rect.height *= ratioH return rect 这个rect就是放3d模型的节点的位置的宽高 而我改成了这样之后: rect.x = 0; rect.y = 0; rect.width = Laya.stage.width; rect.height = Laya.stage.height; return rect 直接设整个屏幕为大...

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

860. Laya3D 中如何解决3D模型上添加文本的问题,类似Unity中的3DText [ 62%]

...tx.fillText(settings.text, 0, (settings.canvasHeight - fontSize) * 0.5); //return canvas.toDataURL(); return ctx.getImageData(0, 0, canvas.width, canvas.height); } } Constantine • 2018-09-10 14:40 @大大大懒猫:十分感谢。我明白先在Canvas上绘制后获取ImageData的思路了,不过...

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