大约有 220 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
图片通过drawTexture平铺出现缝隙 this.darwSprite = new Sprite(); this.addChild(this.darwSprite); var t: Texture = Laya.loader.getRes("load/0.png"); this.darwSprite.graphics.drawTexture(t,0,0); this.darwSprite.graphics.drawTexture(t,176,0); ...
来源: Laya_社区 发布时间: 20160718
...但是回调回来执行getRolesBack的时候,loadCreateRole()报错:this.loadCreateRole is not a function。 回调函数里的函数执行不了吗?求解决办法。//Main.as private function loadRoles():void { SocketProxy.instance.setRoleCall(getRolesBack); } protected function getR...
来源: Laya_社区 发布时间: 20170622
...播放音效"); Laya.SoundManager.playSound("res/AK47.mp3", 1, new Handler(this, this.onComplete)); 很简单的调用就崩溃了,麻烦看看,谢谢!!! 附件 : --> 2018-06-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...
来源: Laya_社区 发布时间: 20180611
...大战游戏出现的问题!! 在鼠标控制飞机移动时,写成this.hero.pos(Laya.stage.mouseX, Laya.stage.mouseY);是没有用的,可以看到hero容器的坐标变化了,但是机身显示还在原地并未移动, 但如果设置this.hero.aniBody.pos(Laya.stage.mouseX, Laya.stage.m...
来源: Laya_社区 发布时间: 20180502
...请教请教! 我添加了方向光: //添加方向光 this.m_light = this.m_scene3D.addChild(new Laya.DirectionLight()) as Laya.DirectionLight; this.m_light.color = new Laya.Vector3(0.8, 0.8, 0.8); this.m_light.transform.worldMatrix.setF...
来源: Laya_社区 发布时间: 20200323
...ent.EVENT_CLOSE, (event) => { //触发条件,手机端把网全关了 this.testWebSocket();//这种方式会导致在短时间内App的websocket out of memory //这种方式短时间内没发现会崩溃 // setTimeout(()=>{ // this.testWebSocket(); // },3000); }); client.on(PinusWSClientEven...
来源: Laya_社区 发布时间: 20190507
...而自动暂停,监听游戏失焦事件:Laya.stage.on(Laya.Event.BLUR,this,this.method); 在失焦的回调里设置: Laya.SoundManager.musicMuted = true; Laya.SoundManager.stopMusic(); 将正在播放的音乐路径存为成员变量; 2.监听游戏获取焦点事件: 监听游戏获...
来源: Laya_社区 发布时间: 20180813
...nd { //声明一个信息文本 private txtInfo: Text; constructor() { this.setup(); } private setup(): void { var gap: number = 10; //创建一个Sprite充当音效播放按钮 var soundButton: Sprite = this.createButton("播放音效"); soundButton.x = (Laya.stage.width - soundButton.width...
来源: Laya_社区 发布时间: 20190421
...e("res/Scene/Conventional/Model.lh", Laya.Handler.create(this, function () { GameManager.models = Laya.loader.getRes("res/Scene/Conventional/Model.lh"); this.refreshProgressBar(1); this.destroy(); ...
来源: Laya_社区 发布时间: 20240218
...加载学堂3D角色资源,播放动画异常 //创建男角色模型 this.roleMan = new Laya.MeshSprite3D(Laya.Mesh.load("man/hero-mon_1129.lm")); this.roleMan.transform.localScale = new Laya.Vector3(0.01,0.01,0.01); this.roleMan.transform.localPosition = new Laya.Vector3(0,-0.5,-3); this.scen...
来源: Laya_社区 发布时间: 20180725