大约有 1,608 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0056 秒)
Laya_社区(977) Laya2.0_文档(192) Laya_示例(138) Laya2.0_示例(101) Laya3.0_api(61) Laya2.0_api(57) laya_api(53) Laya3.0_文档(29)
... console.log("错误"+e); console.log(e); } onLoded():void{ // Laya.stage.addChild(obj); Laya.stage.addChild(new Btn1 ());//加入舞台 } } new Game(); class Btn1 extends ui.v1UI{ public socket: Laya.Socket; public byte: Laya.Byte; constructor(){ super(); this.btn1.on(Laya.Event.CLICK,this...
来源: Laya_社区 发布时间: 20180210
...问题 var con1:laya.display.Sprite = new laya.display.Sprite; Laya.stage.addChild(con1); con1.x = con1.y = 100; var con:laya.display.Sprite = new laya.display.Sprite; con1.addChild(con); // con.scrollRect = new laya.maths.Rectangle(200,200,500,500); con.x = con.y = -200; var sp:laya.display.Sprite ...
来源: Laya_社区 发布时间: 20180106
... sp = new Sprite(); Laya.stage.addChild(sp); //画矩形 sp.graphics.drawRect(20, 20, 100, 50, "#ffff00"); } } } ``` 代码运行效果: ![图片...
来源: Laya2.0_文档 发布时间: 20210715
... cuixueying 赞同来自: var ccc:CCCView=new CCCView(); ccc.popup(); sp.addChild(ccc); Laya.stage.addChild(ccc);把dialog放置到一个容器内,通过Laya.stage.addChild添加dialog到舞台,可以避免层级遮挡的问题 2017-01-05 0 1 分享 微博 QZONE 微信 weiyongwill 赞同来自: ...
来源: Laya_社区 发布时间: 20170105
...同屏 if (foods.length == 5) return; var food = new Sprite(); Laya.stage.addChild(food); foods.push(food); const foodSize = 40; food.size(foodSize, foodSize); food.graphics.drawRect(0, 0, foodSize, foodSize, "#00BFFF"); food.x = Math.random() * Laya.stage.width; food.y = Math.random() * Laya.stage....
来源: Laya_示例 发布时间: 20241118
...例化 //简单的鼠标提示 var button:Button=new Button(); Laya.stage.addChild(button); button.label="button One"; button.pos(100,100); button.skin="comp/button.png"; button.toolTip="我是button One!"; //自定义鼠标提示 var button2:Button=new Button(); Laya.stage.addChild(button2); button...
来源: Laya_社区 发布时间: 20161115
...ader.ATLAS); function onLoaded(){ Laya.sg_sign = new sg_sign(); Laya.stage.addChild(Laya.sg_sign); } function onWxSign1(){ Laya.sg_sign.removeSelf(); Laya.Pool.recover("sg_sign",Laya.sg_sign); Laya.sg_index = new sg_index(); Laya.stage.addChild(Laya.sg_index); } 这样写可以吗 还有ui和代码...
来源: Laya_社区 发布时间: 20170725
...统计信息 // Laya.Stat.show(); //添加3D场景 this.scene = Laya.stage.addChild(new Laya.Scene()) as Laya.Scene; //添加照相机 this.camera = (this.scene.addChild(new Laya.Camera(0, 0.1, 100))) as Laya.Camera; this.camera.transform.translate(new Laya.Vector3(0, 3, 3)); this.camera.transform.r...
来源: Laya_社区 发布时间: 20180307
...r.ATLAS); } private function onLoaded():void { list=new List(); Laya.stage.addChild(list); list.itemRender=Item; list.repeatX=1; list.repeatY=6; list.x=((Laya.stage.width-Item.WID)/2); list.y=((Laya.stage.height-Item.HEI*list.repeatY)/2); list.vScrollBarSkin="comp/vscroll.png"; list.renderHandler=ne...
来源: Laya_社区 发布时间: 20170626
....drawTexture(Laya.loader.getRes(Res),150,50); //添加到舞台 Laya.stage.addChild(img); } } } ``` 编译运行效果如图2所示: ![图2](img/2.jpg)(图2) ### 2.2 创建一个圆形的遮罩区域 用代码创建一个圆形的遮罩区域。通过mask属性,即可实现遮罩效果。继...
来源: Laya2.0_文档 发布时间: 20210714