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

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

71. LayaAir引擎与原生Flash的差异文档说明! [ 88%]

...nFill(0xFFFF00); sp.graphics.drawRect(0,0,200,200); sp.graphics.endFill(); addChild(sp); var mask:Sprite=new Sprite(); mask.graphics.beginFill(0xFF0000); mask.graphics.drawCircle(0,0,50); mask.graphics.endFill(); sp.mask=mask2、动态遮罩 var sp:Sprite=new Sprite(); sp.graphics.beginFill(0xFFFF00...

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

72. Sprite用graphics绘制图形后,mouse_over触发scale显示有问题 [ 88%]

...Info.width; this._body.height = this._objectInfo.templateInfo.height; this.addChild(this._body); this.on(Event.MOUSE_OVER, this, this.__onMouseOverHole); this.on(Event.MOUSE_OUT, this, this.__onMouseOutHole); } this.pos(this._objectInfo.templateInfo.x, this._objectInfo.templateInfo.y); } private __o...

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

73. Animation 使用疑问 [ 88%]

... = new Laya.Animation(); this.body.y = -100; this.body.interval = 50; this.addChild(this.body); this.body.play(0, true, "hero_fly"); } private body: Laya.Animation; private onBtn2Click(): void { this.body.destroyChildren(); this.body.clear(); this.body.destroy(); } 调试面板中的sprite个DrwaCal...

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

74. 请问UI页面怎么移除 [ 88%]

...I页面怎么移除 我在login.ui里面一个按钮事件触发Laya.stage.addChild(new game());然后这个是动态事件,怎么样在login.ui函数里面先移除这个game.ui页面后再addChild进来呢。因为多次事件触发后就相当于NEW了很多进来。尝试login.remoeChild(game)...

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

75. 分享:解决Dialog层级遮挡问题 [ 88%]

...会被删除,还是在Laya.stage节点上存在, 这时用Laya.stage.addChild方法添加了其他的ui后,在用Dialog.manager.popup或show方法添加dialog弹窗时 就会被盖到下面,这是正常的,如果不想被盖到下面,你可以在你游戏初始化后,建立自己的层...

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

76. 有关Laya3D碰撞检测疑问 [ 88%]

....Stage.SCREEN_NONE; Laya.Stat.show();  var scene: Laya.Scene = Laya.stage.addChild(new Laya.Scene()) as Laya.Scene;  this._outHitAllInfo = new Array<Laya.RaycastHit>();  //初始化照相机 this.camera = scene.addChild(new Laya.Camera(0, 0.1, 100)) as Laya.Camera; this.camera.transform.tra...

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

77. laya3D导入动画材质在安卓手机和电脑上显示正常,在苹果手机显示异常 [ 88%]

...adFinish() { //初始化场景 this.scene = new Laya.Scene3D(); Laya.stage.addChild(this.scene); this.scene.ambientColor = new Laya.Vector3(0.5, 0.5, 0.5); //初始化相机 var camera = new Laya.Camera(0, 0.1, 100); this.scene.addChild(camera); camera.transform.translate(new Laya.Vector3(0, 3, 5));...

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

78. 3D的点光源或者聚光灯的光源会穿透模型 [ 88%]

...t cube_2 = cube_.clone() as Laya.MeshSprite3D;         scene_.addChild(cube_2);         cube_2.transform.translate(new Laya.Vector3(0,0,-5));         scene_.addChild(spotLight_);         scene_.addChild(camera_);         scene_.addChild(cube_);     ...

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

79. unity里导出的骨骼动画无法读取 [ 87%]

...    var scene:Scene = new Scene();              Laya.stage.addChild(scene);              //添加照相机                 var camera:Camera = (scene.addChild(new Camera( 0, 0.1, 100))) as Camera;                 camera.transform.translate(n...

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

80. laya默认模型的阴影没有渲染 [ 87%]

...启统计信息 Laya.Stat.show(); //添加3D场景 var scene = Laya.stage.addChild(new Laya.Scene()); //添加照相机 var camera = (scene.addChild(new Laya.Camera(0, 0.1, 1000))); camera.transform.translate(new Laya.Vector3(0, 5, 0)); camera.transform.rotate(new Laya.Vector3(-30, 0, 0), true, fals...

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