大约有 905 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0045 秒)
Laya_社区(454) Laya2.0_示例(91) Laya_示例(88) Laya2.0_文档(74) Laya3.0_api(63) Laya2.0_api(58) laya_api(54) Laya3.0_文档(23)
...; 0.01) { onIPhoneX = (Browser.clientWidth == 375 && Browser.clientHeight == 812) || (Browser.clientWidth == 812 && Browser.clientHeight == 375); } if (onIPhoneX) { //初始化引擎 Laya.init(Browser.clientWidth * Browser.pixelRatio, Browser.clientHeight * Browser.pixelRatio, WebGL)...
来源: Laya_社区 发布时间: 20180521
...ew Text(); txt.text = "hello"; txt.color = "#FF00FF"; txt.width = 100; txt.height = 100; txt.x = 200; txt.y = 100; txt.fontSize = 50; txt.on("click", this, onFunc); Laya.stage.addChild(txt); } private function onFunc(e:Event):void { var arr:Array = e.touches; console.log("e.touchId="+e.touchId); con...
来源: Laya_社区 发布时间: 20170519
...(txt); txt.x = (Laya.stage.width - txt.textWidth) / 2; txt.y = (Laya.stage.height-txt.textHeight) / 2; zkang5 • 2022-07-11 09:49 好的,谢谢
来源: Laya_社区 发布时间: 20220708
...ish():void{ // .......前面摄影机,猴子精灵相关操作忽略 var heightMap = Laya.Loader.getRes("res/threeDimen/scene/TerrainScene/Assets/HeightMap.png"); //初始化MeshTerrainSprite3D this.terrainSprite = MeshTerrainSprite3D.createFromMeshAndHeightMap(meshSprite3D.meshFilter.sharedMesh a...
来源: Laya2.0_文档 发布时间: 20210715
....createMap("map/map.json",new Rectangle(0, 0, Laya.stage.width, Laya.stage.height), new Handler(this, completeHandler)); function completeHandler(params) { console.log("brj laya h5 加载完成.."); } 2017-09-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀...
来源: Laya_社区 发布时间: 20170918
...截屏不完整的问题 this.ui.drawToCanvas(Laya.stage.width, Laya.stage.height, 0, 0).getCanvas().toDataURL() 第一次截图正常, 第二次截图就只有左下角一小块 同一个界面反复界面反复截图是没问题,界面重新创建之后就有问题了 附件 : --> 2018-08-03 ...
来源: Laya_社区 发布时间: 20180803
...t.repeatY = 4; list.x = (Laya.stage.width - WID) / 2; list.y = (Laya.stage.height - HEI * list.repeatY) / 2; // 使用但隐藏滚动条 list.vScrollBarSkin = ""; list.selectEnable = true; list.selectHandler = new Handler(this, onSelect); list.renderHandler = new Handler(this, updateItem); Laya.stag...
来源: Laya2.0_文档 发布时间: 20210714
...ish():void { .......//前面摄影机,猴子精灵相关操作忽略 var heightMap:Texture2D = Loader.getRes("res/threeDimen/scene/TerrainScene/Assets/HeightMap.png") as Texture2D; //初始化MeshTerrainSprite3D terrainSprite = MeshTerrainSprite3D.createFromMeshAndHeightMap(meshSprite3D.meshFilter...
来源: Laya2.0_文档 发布时间: 20210714
... 设备像素分辨率:Laya.Browser.clientWidth,Laya.Browser.clientHeight; 设备物理分辨率:Laya.Browser.width,Laya.Browser.height; 像素比:Laya.Browser.pixelRatio; 默认从浏览器获得的clientWidth不是像素分辨率,而是经过缩放过的分辨率...
来源: Laya2.0_文档 发布时间: 20200307
...会导致全屏闪烁一下 page.drawToCanvas(Laya.stage.width,Laya.stage.height,0,0).getCanvas().toDataURL(); 测试是执行这句代码的时候发生的,实际上就是屏幕瞬间黑了一下,然后恢复。请问有解决方案吗?在android上没有出现 2017-10-25 添加评论 免费...
来源: Laya_社区 发布时间: 20171025