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

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

641. 微信小程序调试器运行正常,真机调试报错 [ 54%]

...1 gameThirdScriptError self is not defined;at api request success callback function ReferenceError: self is not defined at new s (game.js:6:16022) at  (../../src/script/GameUI.js:10:1) at  (../../src/script/GameUI.js:10:1) at  (../../src/script/GameUI.js:10:1) at at (game.js:6:17062) at  (../../...

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

642. 场景天空(ActionScript-3D基础(AS3)-LayaAir3D之场景渲染配置) [ 54%]

...ial.load("res/threeDimen/skyBox/skyBox1/SkyBox.lmat", Handler.create(null, function(mat:BaseMaterial):void { var skyRenderer:SkyRenderer = camera.skyRenderer; skyRenderer.mesh = SkyBox.instance; skyRenderer.material = mat; })); ``` 效果如下(图3): ![](img/3.png)(图3) **使用Unity的...

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

643. Animation如何获取图集单帧实际宽高 [ 53%]

....loadAtlas("res/atlas/hero_"+_model+".atlas",Handler.create(this,onLoad)); function onLoad():void { this.addChild(ani); var bounds:Rectangle = ani.getBounds(); Control.showLog(bounds.toString()); } 附件 : --> 2018-03-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果...

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

644. 场景天空(TypeScript-3D基础(TS)-LayaAir3D之场景渲染配置) [ 53%]

...oad("res/threeDimen/skyBox/skyBox1/SkyBox.lmat", Laya.Handler.create(null, function(mat) { var skyRenderer = camera.skyRenderer; skyRenderer.mesh = Laya.SkyBox.instance; skyRenderer.material = mat; })); ``` 效果如下(图3): ![](img/3.png)(图3) 以上使用的天空盒为六张图片构...

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

645. ShaderPass介绍(TypeScript-3D基础(TS)-LayaAir3D之Shader) [ 53%]

...key/Assets/LayaMonkey/LayaMonkey-LayaMonkey.lm", Laya.Handler.create(this, function(mesh) { var layaMonkey = scene.addChild(new Laya.MeshSprite3D(mesh)); layaMonkey.transform.localScale = new Laya.Vector3(0.3, 0.3, 0.3); layaMonkey.transform.rotation = new Laya.Quaternion(0.7071068, 0, 0, -0.7071067...

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

646. LAYAAIR加载SWF无线循环 [ 53%]

...             _Sheep=createMovieClip(SheepSWFPath);    private function createMovieClip(path:String):MovieClip         {             var mc:MovieClip = new MovieClip();                      mc.load(path,false);        mc.play(0,false);    ...

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

647. ani时间轴动画问题 [ 53%]

...a.loader.load("res/atlas/move.json", Laya.Handler.create(this, onLoaded)); function onLoaded() {     //创建一个Animation实例     var tl = new Laya.Animation();     //加载动画文件     tl.loadAnimation("TimeLine.ani");     //添加到舞台     Laya.stage.addChild(tl);  ...

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

648. 图片居中的问题 [ 53%]

...("res/bg-480x720.jpg"); Laya.stage.on(Laya.Event.RESIZE,this,onResize);   function onResize() {     var scale,scaleX,scaleY;     scaleX = Browser.clientWidth/480;     scaleY = Browser.clientHeight/720;     scale = scaleX > scaleY ? scaleX : scaleY;     bg.scale(scale,scale);     bg.p...

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

649. Dialog.show 的 showEffect参数在微信真机上的问题 [ 53%]

...: Laya.loader.load(["res/atlas/comp.atlas"], Laya.Handler.create(this, function(){ console.log("load atals ok"); var dlg1:ui.TestDlgUI = new ui.TestDlgUI(); Laya.stage.addChild(dlg1); dlg1.show(); }));在微信小游戏的模拟器上是正常的,但是在手机上就看不到UI。 后来经过...

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

650. 为什么会出现报错 ani not found:ufo1_down [ 53%]

...设定了大飞机的血量,可是打一下就死了。    var Game = (function(){ (function Game(){ // 子弹发射偏移位置表 this.bulletPos = [[0],[-15,15],[-30,0,30],[-45,-15,15,45]]; // 关卡等级 this.level = 0; // 升级等级所需要的成绩数量 this.levelUpScore = 0; // 积分...

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