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

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

1471. laya.ui.ColorPicker_API3.0 [ 70%]

...rPicker_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load("resource/ui/color.png", Handler.create(this,onLoadComplete));//加载资源。 } private function onLoadComplete():void { trace("资源加载完成...

来源: Laya3.0_api 发布时间: 20231115

1472. 华为手机SoundManage.playSound有问题 [ 70%]

...            Laya.init(1136, 640);             Laya.stage.bgColor="#ffcccc";             SoundManager.playSound("GameSound/aa/bb.mp3",1,new Handler(this,soundComplete));                                  }            privat...

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

1473. 文本基础样式(ActionScript-LayaAir基础篇(AS3)-文本) [ 70%]

...t:Text = new Text(); txt.text = "hello_world"; txt.color = "#ffffff"; Laya.stage.addChild(txt); } } } ``` 这个时候我们就可以看到txt已经添加到舞台上了,显示了txt中 白色的hello_world。 接着我们给我们的文本添加一些其他的字体样式,粗体、斜体、字...

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

1474. 微信小游戏iOS滑出控制中心或通知中心,导致音乐自动停止。 [ 70%]

...关的链接 提交 1 个回复 bpmf_d 赞同来自: // 失去焦点 Laya.stage.on(Laya.Event.BLUR,this,function(){}); // 获得焦点 Laya.stage.on(Laya.Event.FOCUS,this,function(){}); 可以试试这两个方法如果不行  就请提供一下可以复现的demo 2019-05-09 0 0 分享 微博 QZONE...

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

1475. laya.ui.ProgressBar_API3.0 [ 70%]

...ressBar_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/progress.png", "resource/ui/progress$bar.png"], Handler.create(this, onLoadComplete));//加载资源。 } private function onLoadComple...

来源: Laya3.0_api 发布时间: 20231115

1476. 扇形遮罩问题。 [ 70%]

...个矩形设置扇形遮罩 代码: var sp:Sprite = new Sprite(); Laya.stage.addChild(sp); sp.alpha = 0.8; sp.graphics.drawRect(50,50,50,50,"#ff0000"); var sp1:Sprite = new Sprite(); sp1.alpha = 0.5; //Laya.stage.addChild(sp1); //画扇形 当这个扇形画的角度是 0-360度时 舞台上红色...

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

1477. Laya.init(600,400,laya.webgl.WebGL);这里的600,400能否动态设置,比如手机上,获取显示区域的大小,传给引擎。 [ 70%]

...内容相关的链接 提交 1 个回复 hj 赞同来自: Laya.init(Laya.stage.width,Laya.stage.height); 2018-09-18 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 george 相关问题 看了其他引擎才发现 LAYA 真的太太太太好...

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

1478. laya.ui.Radio_API3.0 [ 70%]

...Enable dataSource destroyed disabled displayHeight displayWidth displayedInStage drawCallOptimize filters globalRotation globalScaleX globalScaleY graphics gray height hideFlags hitArea iconOffset is3D label labelAlign labelBold labelColors labelFont labelPadding labelSize labelStroke labelStrokeCol...

来源: Laya3.0_api 发布时间: 20231115

1479. 时间轴动画(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 70%]

...步:添加动画到舞台,播放动画 ```java //添加到舞台 Laya.stage.addChild(tl); //播放Animation动画 tl.play(); ``` 完整的示例代码如下: **入口类TimeLineDemo.as** ```java package { import laya.display.Animation; import laya.utils.Handler; import laya.webgl.WebGL; public...

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

1480. 设置pivot后,精灵位置显示位置不正确 [ 70%]

...prite; constructor() { Laya.init(2000, 1500); //设置舞台背景色 Laya.stage.bgColor = "#ffffff" this.sp = new Laya.Sprite(); let width = 660 let height = 420 this.sp.size(width, height) this.sp.pivot(Math.round(width / 2), Math.round(height / 2)) this.sp.graphics.drawCircle(0, 0, 5, "#000000") ...

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