大约有 584 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0052 秒)
Laya_社区(419) Laya3.0_api(61) Laya2.0_示例(32) Laya_示例(31) Laya2.0_文档(30) Laya3.0_文档(8) laya_api(2) Laya2.0_api(1)
...r.width,Browser.height); Laya.stage.bgColor="#EEFFCC"; sp=new Sprite(); sp.graphics.drawRect(0,0,200,200,"#FF0000"); Laya.stage.addChild(sp); Laya.timer.loop(delay,this,onLoop); } private function onLoop():void { delay-=50; sp.x+=20; Laya.timer.clear(this,onLoop); Laya.timer.loop(delay,this,onLoop);...
来源: Laya_社区 发布时间: 20170626
...把你的“hero_03.png”这个文件放到atlas下,把url改成 hero.graphics.drawTexture(Laya.loader.getRes("res/atlas/role/hero_03.png")); 2017-11-20 0 0 分享 微博 QZONE 微信 wudi199553 赞同来自: 刚刚你这一行报错,我就把你这一行代码改了,我不清楚,这是...
来源: Laya_社区 发布时间: 20171120
...配采用showAll后留白部分的颜色问题 IDE创建的UI 层级问题 graphics alpha 问题 Panel中的东西左右拖动好象有问题 laya1.7.9beta版 这样写的代码,Tween动画里面只有alpha有效果,scalex和scaley没有变化,怎么回事啊? 移植了一个游戏 代码重...
来源: Laya_社区 发布时间: 20171212
...色块了private function test():void { var sp1:Sprite = new Sprite(); sp1.graphics.drawRect(0,0,300,200,"#ff0000"); var htmlCanvas:HTMLCanvas = sp1.drawToCanvas(300,200,0,0); Laya.timer.once(1000,this,function():void{ var texture:Texture = new Texture(htmlCanvas); var sp2:Sprite = new Sprite(); sp2...
来源: Laya_社区 发布时间: 20181121
...i.Image this.uFace.loadImage(data.face, 0, 0, 50, 50, Handler.create(this, graphicsImg)) function graphicsImg() { //创建遮罩对象 var cMask = new Laya.Sprite(); //画一个圆形的遮罩区域 cMask.graphics.drawCircle(25, 25, 25, "#ff0000"); //圆形所在的位置坐标 cMask.pos(0, 0); //...
来源: Laya_社区 发布时间: 20181214
...监听事件没有反应呢? var xxx:Laya.Sprite = new Laya.Sprite(); xxx.graphics.drawRect(0,0,100, 100,"#ffffff"); xxx.size(100, 100); xxx.mouseEnabled = true; xxx.x = (Laya.stage.width - xxx.width) / 2; xxx.y = (Laya.stage.height - xxx.height) / 2; Laya.stage.addChild(xxx); xxx.on(Laya.Event.CLIC...
来源: Laya_社区 发布时间: 20170606
...i].parent ){ return this.balls[i]; } } let ball = new Laya.Sprite(); ball .graphics.drawRect( 0,0,140,140,"#d9d919"); this.balls.push( ball ); return ball; } } new TexasMain(); [/i][/i] 附件 : --> 不明抖动.rar 2018-02-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20180226
...rl){ var t = new Laya.loader.getRes(url); var ape = new Laya.Sprite(); ape.graphics.drawTexture(t,0,0); Laya.stage.addChild(ape); ape.pos(200,0); } ``` 第三种我们直接创建一个纹理来显示: ```javascript function completeHandler(data){ //加载完成返回的data是arraybuffer //.........
来源: Laya2.0_文档 发布时间: 20210715
...• 2018-07-10 17:27 我怎么改变它的值呢,扇形我是通过this._graphics._one[3] = number;来改变数值的,里面的圆形改变颜色改变不了了 Laya_Aaron • 2018-07-10 17:32 这个要重新画才能改。 bohan • 2018-07-10 18:01 @Laya_Aaron:我现在,在代码里不知...
来源: Laya_社区 发布时间: 20180707
sprite不能设置点击区域 var sp = new Laya.Sprite(); sp.graphics.drawPie(0, 0, 300, 0, 90, "#00ffff"); sp.on(Laya.Event.CLICK, this, this.aa) sp.mouseEnabled = true; // 设置点击区域没有作用 var hitArea = new Laya.HitArea(); hitArea.unhit.drawPie(0, 0, 150, 0, 90, "#00ffff"); sp.hitA...
来源: Laya_社区 发布时间: 20180119