大约有 515 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0054 秒)
...ian 赞同来自: this.bg_img.skin = "ui/bg.jpg"; this.bg_img.width = Laya.stage.width; this.bg_img.height = Laya.stage.height; Image使用skin修改显示,改变宽高时,会拉伸显示内容 2018-01-24 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请...
来源: Laya_社区 发布时间: 20180124
..._ct; public function LayaSample() { Laya.init(640, 1136, WebGL); Laya.stage.bgColor = "#CCBBAA"; var panel = new Panel(); Laya.stage.addChild(panel); panel.size(460, 704); rule_ct = new Sprite(); Laya.stage.addChild(rule_ct); rule_ct.loadImage("rule_txt.png", 0, 0, 460, 0, Handle...
来源: Laya_社区 发布时间: 20170215
...ialog = new MyDialog("注册功能暂未开通!"); dlg.popup(true); Laya.stage.addChild(dlg); }); 2018-03-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 qian 赞同来自: 不能添加到stage上 2018-03-0...
来源: Laya_社区 发布时间: 20180305
...wPortPivotByScale(0,0); //将原地图放大3倍 this.tMap.scale = 3; Laya.stage.on(Laya.Event.RESIZE,this,this.resize); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseUp); this.resize(); } /** * 移动地图视口 */ private mouseMove(...
来源: Laya2.0_文档 发布时间: 20210715
... 微博 QZONE 微信 ZMLaya 赞同来自: 亲,我在程序入口将 Laya.stage.scaleMode = Laya.Stage.SCALE_EXACTFIT,这样不行吗? 你说的调整ui大小,该怎么调呢?是在load.js文件里调整吗?如果方便的话,给我详细说明一下好吗?拜托了。谢谢 2017-12-1...
来源: Laya_社区 发布时间: 20171209
...res_array, Handler.create(null, onLoaded2)); } function onLoaded2() { Laya.stage.addChild(new TestUI()); }当用这种方式分步加载资源的时候 就会出现我说的情况 ios下会 安卓是正常, 第一步的资源会加载成功,第二部分的资源就加载失败 2018-08-03 添加...
来源: Laya_社区 发布时间: 20180803
...ve横竖屏黑屏 index.html设置竖屏,第一个场景是竖屏显Laya.Stage.SCREEN_VERTICAL, 在第二个场景需要横屏显示的时候设置Laya.Stage.SCREEN_HORIZONTAL,网页上是正常的。在LayaNative到第二个场景就黑屏了。怎么处理? 附件为重现的demo,求...
来源: Laya_社区 发布时间: 20180407
...etViewPortPivotByScale(0,0); //将原地图放大3倍 tMap.scale = 3; Laya.stage.on(Event.RESIZE,this, this.resize); Laya.stage.on(Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Event.MOUSE_UP, this, this.mouseUp); resize(); } /** * 移动地图视口 */ private function mouseMove():void { v...
来源: Laya2.0_文档 发布时间: 20210714
...ublic constructor() { super(); console.log("startScene"); console.log(Laya.stage.name); console.log(Laya.stage.numChildren); console.log(this.numChildren); console.log(this.parent); console.log(this.name); } }这个同样是null export default class game_mgr extends Laya.Script { constructor() { sup...
来源: Laya_社区 发布时间: 20190904
...放了。 static _visibilityChange() { if (ILaya.stage.isVisibility) { SoundManager._recreateWebAudio(() => { SoundManager._stageOnFocus(); }); } else { SoundManager._stageOnBlur(); ...
来源: Laya_社区 发布时间: 20180425