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

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

1031. 想用camera做一个类似照相机的功能 [ 78%]

...     this.renderTargetCamera.renderTarget = new RenderTexture(Laya.stage.width, Laya.stage.height);             //渲染顺序             this.renderTargetCamera.renderingOrder = -1;             //清除标记             this.renderTargetC...

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

1032. 3D模型与2D地图混合,3D模型与2D地图障碍物显示层级相互穿插怎么实现? [ 78%]

...最底层。 具体的掌控顺序为加载到舞台相应顺序。 Laya.stage.addChild(底层2d容器) Laya.stage.addChild(中层3d场景) Laya.stage.addChild(上层2d容器) 2017-08-22 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 jxf...

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

1033. 发布Oppo小游戏屏幕适配bug [ 78%]

...函数重置ui。注释掉就好了。自问自答,希望有用。 Laya.stage.on(Laya.Event.RESIZE, this, this.resize);     static resize(): void { // let w = this.config.width; // let h = this.config.height; // let screen_wh_scale = Laya.Browser.clientWidth / Laya.Browser.clientHeight; // if (L...

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

1034. 用LayaAir引擎解析Tiled Map地图(TypeScript-2D进阶篇(TS)-扩展模块) [ 78%]

...wPortPivotByScale(0,0); //将原地图放大3倍 this.tMap.scale = 3; Laya.stage.on(Laya.Event.RESIZE,this,this.resize); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseUp); this.resize(); } /** * 移动地图视口 */ private mouseMove(...

来源: Laya2.0_文档 发布时间: 20210715

1035. ToolTip鼠标悬停的使用 [ 78%]

...lic function ToolTipDemo() { Laya.init(Browser.width,Browser.height); Laya.stage.bgColor="#eeffcc"; Laya.loader.load("res/atlas/comp.json",Handler.create(this,onLoaded),null,Loader.ATLAS); } private function onLoaded():void { this._testTip=new TestTipsUI();//务必在Laya.init后去new实例,不可...

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

1036. list里面可以加入多个view吗? [ 78%]

...lic function LayaAirDemo() { Laya.init(Browser.width,Browser.height); Laya.stage.bgColor="#EEFFCC"; Laya.loader.load("res/atlas/comp.json",Handler.create(this,onLoaded),null,Loader.ATLAS); } private function onLoaded():void { list=new List(); Laya.stage.addChild(list); list.itemRender=Item; list.rep...

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

1037. 请问有没有方法能够获取“鼠标是否处于按下状态”? [ 78%]

...没有方法能够获取“鼠标是否处于按下状态”? 比如Laya.stage.XXXXX()之类的 2017-04-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 189*****192 赞同来自: zhang92tong 、cuixueying 、Za...

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

1038. 【求助】关于Cannot read property 'visible' of undefined问题 [ 78%]

...的: private function showFoods():void{ foodSprite = new Sprite(); Laya.stage.addChild(foodSprite); this.index = 0; foodsList = new Array(); foodsList.push(new Food("菜品1", "1", 0)); foodsList.push(new Food("菜品2", "2", 1)); foodsList.push(new Food("菜品3", "3", 2)); foodsList.push(new Foo...

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

1039. 请问2.0射线到底如何使用呢? [ 78%]

...线)   function 构造函数() { // 添加鼠标点击事件 Laya.stage.on( Event.MOUSE_DOWN, this, onMouseDown ); // 射线初始化 ray = new Ray( new Vector3(0,0,0), new Vector3(0,0,0) ); } // 鼠标点击方法 function onMouseDown(){     // 获取鼠标在屏幕点击的位置   ...

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

1040. bitmapFont.loadFont()加载多个地址导致位图输出重 [ 78%]

...; txt.text=value1; txt.font =this.fontName; txt.leading = 30; txt.pos(Laya.stage.width - txt.width >> 1, Laya.stage.height - txt.height >> 1); Laya.stage.addChild(txt); } 附件 : --> 2019-07-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...

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