大约有 219 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0048 秒)
Laya_社区(142) Laya3.0_api(61) Laya_示例(4) laya_api(3) Laya2.0_api(3) Laya2.0_文档(3) Laya3.0_文档(2) Laya2.0_示例(1)
...>> 1); _colorSpr.size(_colorTex.width, _colorTex.height); Laya.stage.addChild(_colorSpr); _initPixelCount = getPixel(_colorTex); addEvent(); } private function addEvent():void { _colorSpr.on(Event.MOUSE_MOVE, this, __moveHandler); } private function __moveHandler():void { var p:Point = toLocal...
来源: Laya_社区 发布时间: 20180302
...始有问题 问题代码: _modePnl是场景里的节点 一执行addChild()这句话 界面布局就会乱 请问是什么问题呢 let { x, y } = this._modelPnl.localToGlobal(new Laya.Point(0, 0)) let { x: x2, y: y2 } = this._modelPnl.localToGlobal(new Laya.Point(this._m...
来源: Laya_社区 发布时间: 20200401
...tage.ALIGN_CENTER; Laya.stage.alignV = Laya.Stage.ALIGN_CENTER; Laya.stage.addChild(Laya.Scene.load("res/LayaScene_Shark/Shark.ls")) as Laya.Sprite3D; } } new LayaAir3D(); 附件 : --> Shark.rar 2018-01-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...
来源: Laya_社区 发布时间: 20180131
...var testView:TestView = new TestView(); Laya.stage.addChild(testView); fairygui.UIPackage.addPackage ( "res/Bag" ); Laya.stage.addChild ( fairygui.GRoot.inst.displayObject ); fairygui.GRoot.inst.addChil...
来源: Laya_社区 发布时间: 20180513
..._FULL; Laya.stage.bgColor="#444"; var sprite=new Laya.Sprite(); Laya.stage.addChild(sprite); sprite.loadImage("img/bg.jpg"); } start(); 附件 : --> test-low-frame.zip 2020-05-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交...
来源: Laya_社区 发布时间: 20200507
...张图片 var image:Image = new Image(); image.skin = "a.png"; Laya.stage.addChild(image); 以上是基本用法,具体开发数据域的限制请参考官方的文档,这里只列出了具体的使用说明 2018-03-10 2 4 分享 微博 QZONE 微信 lvming1983 赞同来自: 那这个怎么...
来源: Laya_社区 发布时间: 20180310
...onLoadComplete(){ const scene = new Laya.Scene3D() Laya.stage.addChild(scene) const prefab = Laya.loader.getRes(url) scene.addChild(prefab) } 2020-03-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 ...
来源: Laya_社区 发布时间: 20200313
... init() { Laya.stage.bgColor='#ffffff'; Laya.stage.addChild(new Laya.Image('comp/img/img1.png')); Laya.timer.once(1000, this, this.delayShow); } delayShow() { let canvas = Laya.stage.drawToCanvas(Laya.stage.width, Laya.stage.height, 0, 0); ...
来源: Laya_社区 发布时间: 20230419
... Laya.Scene3D(); //将场景加到舞台上 this.scene = scene; Laya.stage.addChild(scene); //添加方向光 var directionlight: Laya.DirectionLight = scene.getChildByName( "Directional Light" ) as Laya.DirectionLight; this.directionlight = directionlight; //加入子層人物腳色到舞台 var li...
来源: Laya_社区 发布时间: 20200917
...new NormalDialog(context); this.normalDialog.popup(true, true); Laya.stage.addChild(this.normalDialog); } } // 弹窗代码 class NormalDialog extends ui.normalDialogUI { constructor( text: string ) { super(); // 设置label文字 this.context.text = text; this.btn_close.on(Laya.Event.C...
来源: Laya_社区 发布时间: 20181216