大约有 787 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0063 秒)
Laya_社区(413) Laya_示例(77) Laya3.0_api(64) Laya2.0_示例(64) Laya2.0_api(58) laya_api(53) Laya2.0_文档(42) Laya3.0_文档(16)
...aya3D.init(0, 0, true); this.rotation = new Laya.Vector3(0, 0.01, 0); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show(); var scene = Laya.stage.addChild(new Laya.Scene()); var camera = (scene.addChild(new Laya.Camera(0, 0.1, 100))); camera...
来源: Laya_示例 发布时间: 20241118
...aSource destroyed direction disabled displayHeight displayWidth displayedInStage drawCallOptimize filters globalRotation globalScaleX globalScaleY graphics gray group height hideFlags hitArea index interval is3D isPlaying left mask mouseEnabled mouseX mouseY numChildren parent pivotX pivotY right ro...
来源: Laya3.0_api 发布时间: 20231115
...ation = new Laya.Animation(); light.loadAnimation("ani/thunder.ani"); Laya.stage.addChild(light); light.play(0, true); 用light.frames获取结果为null,不行 2017-08-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 ...
来源: Laya_社区 发布时间: 20170803
...停了所有的计时器,想请问下有没有什么方法可以让 Laya.stage,timerLoop忽略掉 scale=0 ,或者有没有其他方式可以实现一部分计时器暂停,一部分开启 2018-02-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20180211
...aSource destroyed direction disabled displayHeight displayWidth displayedInStage drawCallOptimize filters globalRotation globalScaleX globalScaleY graphics gray height hideFlags hitArea is3D items labelBold labelColors labelFont labelPadding labelSize labelStroke labelStrokeColor labels left mask mo...
来源: Laya3.0_api 发布时间: 20231115
BUG: Laya3D 1.7.17 SLOW 模式 Laya.stage.frameRate = Laya.Stage.FRAME_SLOW; 模式下 需要将 var isDoubleLoop=(this._renderCount % 2===0); 改为 var isDoubleLoop=(this._renderCount % 2===1); 使得第一帧时,后续的代码能正常跑下去,否则scene=null 2018-03-18 添加评论 免...
来源: Laya_社区 发布时间: 20180318
... this.height = texture.height; this.pos((Laya.stage.width - this.width)/2, (Laya.stage.height - this.height)/2); } } 2017-10-20 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起...
来源: Laya_社区 发布时间: 20171019
... title = new Sprite(); Laya.stage.addChild(title); title.graphics.drawTexture(Laya.loader.getRes("res/mainpage/title.png")); var titleT:Texture = Laya.loader.getRes("res/mainpage/title.png"); ...
来源: Laya_社区 发布时间: 20171001
...aya.Loader.ATLAS); } private onLoaded():void{ this.ball = new Ball(); Laya.stage.addChild(this.ball); this.ball.x = Laya.stage.width / 2; this.ball.y = Laya.stage.height / 2; Laya.stage.on(Laya.Event.CLICK,this,this.onClick); Laya.timer.frameLoop(1,this,this.onEnterFrame); } private onEnterFrame():v...
来源: Laya_社区 发布时间: 20171108
... sprite0.cacheAsBitmap = true; Laya.stage.addChildAt(sprite0,0); var sprite1:Sprite = new Sprite(); sprite1.loadImage("creatRoom/background_bk.png"); sprite1.pos(Laya.stage._wi...
来源: Laya_社区 发布时间: 20170314