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

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

1051. 官方的API为什么找不到pivot和pos? [ 78%]

...phicBounds(); ani.pivot(bounds.width / 2, bounds.height / 2); ani.pos(Laya.stage.width / 2, Laya.stage.height / 2); Laya.stage.addChild(ani);   上面pivot和pos都是什么意思?官方API为什么找到说明? 2018-05-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...

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

1052. 用LayaAir引擎解析Tiled Map地图(ActionScript-2D进阶篇(AS3)-扩展模块) [ 78%]

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

1053. QQ里扫一扫打开网页,不响应Laya.Event.FOCUS事件,导致失去焦点后,声音异常 [ 78%]

...autoStopMusic = true Laya.SoundManager.playSound("sound/bg1.mp3", 0); Laya.stage.on(Laya.Event.FOCUS, null, function(){ console.log("获取焦点") Laya.SoundManager.playSound("sound/bg1.mp3", 0); }) Laya.stage.on(Laya.Event.BLUR, null, function(){ console.log("失去焦点") }) 2018-08-07 添加评...

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

1054. 2D图片在3D场景中定位问题 [ 78%]

... • 2018-01-02 17:37 OK,摸索了一下,可以实现了 2dname = Laya.stage.addChild(new Laya.Image("res/layabox.png")); Laya.timer.frameLoop(1, this, functionname); function functionname() { camera.viewport.project(warehouse1.transform.position, camera.projectionViewMatrix, _outPos);...

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

1055. 关于3d场景上Button点击事件顺序问题 [ 78%]

...了一个按钮button。 2,在场景中加入了鼠标点击事件  Laya.stage.on(Event.MOUSE_DOWN,this,sceneClick);   private function sceneClick():void {     trace("scene clicked"); }   3,在button上添加按钮功能 button.on(Event.CLICK,this,onBtn); private function onBtn(e:Event):void {...

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

1056. 使用音频 · LayaAir3.0文档 · LAYABOX [ 78%]

...要开发者要自行在失去焦点和恢复的时候,通过侦听失去stage焦点和获得stage焦点进行控制,(在小游戏平台,也要看各小游戏的平台切出规则),浏览器中恢复的参考代码如下: …… //循环播放_sound _sound.play(0); //失去舞台焦点...

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

1057. 自定义panel类问题 [ 78%]

...arams) { g_uiScroll = new UIScroll(610.0, 250); g_uiScroll.pos(0, 0); Laya.stage.addChild(g_uiScroll); g_uiScroll.addEventText("hhhhhhhhhhhhhhhhhhhhhhhhhhhhh"); var view = new NpcLayer(); view.pos(0,217); Laya.stage.addChild(view); } function onAssetLoaded(params) { g_uiScroll = new UIScro...

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

1058. StaticModel_MeshSample例子运行不起来 [ 78%]

... constructor() {         Laya3D.init(0, 0,true);         Laya.stage.scaleMode = Laya.Stage.SCALE_FULL;         Laya.stage.screenMode = Laya.Stage.SCREEN_NONE;         Laya.Stat.show();         var scene = Laya.stage.addChild(new Laya.Scene()) as Laya.Scene;       ...

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

1059. 2.3微信截图分享问题 [ 78%]

...stHeight: 100, fileType: 'jpg', quality: 1.0 });   var canvas = Laya.stage.drawToCanvas(Laya.stage.width, Laya.stage.height, 0, 0).getCanvas();   这是第二种写法。翻了几次论坛据说已经用不了。而且drawToCanvas返回的HtmlCanvas 也没getCanvas()方法。 那么现在...

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

1060. laya.ui.Box [ 78%]

...,设置为true后,会变灰并且禁用鼠标。Component displayedInStage : Boolean[read-only] 表示是否在显示列表中显示。Node displayHeight : Number[read-only] 对象的显示高度(以像素为单位)。 Component displayWidth : Number[read-only] 对象的显示宽度(以...

来源: laya_api 发布时间: 20170929