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

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

281. 关于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

282. 求教 JS项目的Promise如何使用 [ 58%]

... this.monkey2 = "res/img/monkey2.png"; //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //先加载图片资源,在图片资源加载成功后,通过回调方法绘制图片并添加到舞台 Laya.loader.load(this.monkey2,Laya.Handler.create(this,graphicsImg)); function graphicsImg(){ var...

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

283. 按照打地鼠教程来无法正常加载资源 [ 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

284. 透明背景在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

285. 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

286. 输入文本组件 · LayaAir3.0文档 · LAYABOX [ 58%]

...op(居顶对齐)、middle(居中对齐)、bottom(居底对齐) bgColor 背景颜色,勾选后可以直接输入颜色值,例如:#ffffff,也可以点击输入条右侧的拾色器选取颜色 bordercolor 文本边框颜色,勾选后可以直接输入颜色值,例如:#ffffff...

来源: Laya3.0_文档 发布时间: 20241014

287. flag的问题 [ 58%]

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

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

288. 自适应问题 [ 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

289. 网络和格式-Socket [ 58%]

...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.connect(); } connect() { const Socket = Laya.Socket, Event = Laya.Event; socket = new Socket(); //socket.connect("echo.websocket.org", 80); socket.connectByUrl("ws://echo.websocket.org:80"); output =...

来源: Laya2.0_示例 发布时间: 20241119

290. 舞台上有个label,我能通过截图保存成图片么 [ 58%]

...交 1 个回复 cuixueying 赞同来自: Laya.init(800, 800); Laya.stage.bgColor = "#eeffcc"; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.alignV = Stage.ALIGN_MIDDLE; var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,200,"#EEFF00"); var label:Label=new Label(); label.fontSize=60; label...

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