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

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

61. 按照打地鼠教程来无法正常加载资源 [ 58%]

...         Laya.init(1136, 640);             Laya.stage.bgColor = "#ffcccc";             var resArr:Array = [                 {res:"res/atlas/ui.atlas"},                 {res:"res/ui/back.png",type:Loader.IMAGE}             ]...

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

62. 透明背景在2.12.2以后的版本失效 [ 58%]

...true; Laya3D.init(GameConfig.width, GameConfig.height, config); Laya.stage.bgColor = null;   在2.12.2和之前的版本这么写可以隐藏背景 然后实现背景加载高德或者百度地图 2.13.0和2.13.1beta就彻底没用了 彻底无法隐藏了   随便新建个工程就可以发现了...

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

63. 关于event中只读属性touches,问题,求解 [ 58%]

...uch { public function DemoTouch() { Laya.init(800, 600, WebGL); Laya.stage.bgColor = "#232628"; var txt:Text = new Text(); txt.text = "hello"; txt.color = "#FF00FF"; txt.width = 100; txt.height = 100; txt.x = 200; txt.y = 100; txt.fontSize = 50; txt.on("click", this, onFunc); Laya.stage.addChild(txt...

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

64. UI编辑发布后运行lose skin [ 58%]

...rivate begin: Begin; constructor() { Laya.init(600,400, WebGL); Laya.stage.bgColor = "#000000"; Laya.loader.load("comp/button.png", Handler.create(this, this.onLoaded)); } private onLoaded(): void { this.begin = new Begin(); Laya.stage.addChild(this.begin); } } new GameMain(); 2018-08-29 添加评...

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

65. flag的问题 [ 58%]

...1136, 640, WebGL);                       Laya.stage.bgColor = "#ffffff";                   //以500毫秒的时间间隔播放颜色切换的矩形         Laya.timer.loop(500, this, createRect);               })();       function...

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

66. 自适应问题 [ 58%]

...   Laya.stage.alignH = Stage.ALIGN_CENTER;              Laya.stage.bgColor = "#ff0000";       Laya.stage.scaleMode = "fixedwidth";   Laya.loader.load("http://localhost/layabox/layabox/layabox/res/bg.png'", Handler.create(this, function () {         var t = Laya.loader.getRes(skin); ...

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

67. 怎么实现一个Timer的loop的delay时间越来越短? [ 58%]

...nction LayaAirDemo() { Laya.init(Browser.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,onLoo...

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

68. 关于嵌入div [ 58%]

...ayaAirDemo() { Laya.init(Browser.width, Browser.height, WebGL); Laya.stage.bgColor = "#232628"; Laya.timer.once(500,this,onLoop); Stat.show(); } private function onLoop():void { __JS__('var LayaCanvas1=document.getElementsByTagName("canvas")[0]'); __JS__('var LayaCanvas2=document.getElementsByTagNam...

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

69. 华为手机SoundManage.playSound有问题 [ 58%]

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

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

70. 关于button的click监听 [ 58%]

...class GameMain{ constructor() { Laya.init(750,1334,Laya.WebGL); Laya.stage.bgColor="#FFFFFF"; Laya.stage.scaleMode = "showall"; //不缩放 fixedauto showall Laya.stage.alignH = "center"; //水平居中 Laya.stage.alignV = "middle"; //垂直居中 this.init();...

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