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

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

331. 背景音乐可以播放 音效不行 [ 51%]

...Sound 不出声音      playMusic   其实也是调用 playSound(url, loops, complete, AudioSound, startTime); 为什么这个就能出声音!奥妙在哪里!   难道就是多一个 AudioSound类么 playSound穿过来的就是 null而已!     2017-07-24 0 0 分享 微博 QZONE 微信...

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

332. 播放音乐 失去焦点后回来内存会不断增加 [ 51%]

...得问题,但是不断切换音乐的时候也会增加,如 Laya.timer.loop(1000,this,function():void{ SoundManager.playMusic(UrlUtils.getSoundUrl("runbeard/Audio_Game_Back")); }); Laya_Aaron • 2018-02-08 20:10 都换了就不会切换也增加了 Laya_Aaron • 2018-02-08 20:11 焦...

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

333. u3d导入的粒子效果没有停止方法以及相应事件的吗? [ 51%]

...于遍历产生的sprite的点击事件,急,大神帮看哈 Laya.timer.loop()如何停止 做好的粒子特效在U3D里循环正常。在LAYA插件里预览跳帧闪烁。序列素材本身也是循环的。但是不知道为什么会跳帧。 点击事件不起效 问题状态 最新活动: 20...

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

334. 关于环形进度条,进度不能重置问题 [ 51%]

...e; function IndexView(){ IndexView.super(this); this.angle = 0; Laya.timer.loop(200,this,this.loadProgress) var Sprite = Laya.Sprite; this.box = new Sprite(); this.box.cacheAs = "bitmap"; this.box.pos(0,0); this.say.addChild(this.box); this.draw = new Sprite(); this.box.addChild(this.draw); this.dra...

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

335. parameter 2 is not of type 'WebGLTexture'. [ 51%]

...ment.x = 0; videoElement.y = 0; videoElement.size(1920,1080); videoElement.loop = false; // 是否循环播放 videoElement.load('res/video/mov_bbb.mp4'); // 添加到舞台 let wrap = this.getChildByName('wrap') as Laya.Box; wrap.addChild(videoElement); // 监听点击事件,开始播放视频 let ...

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

336. APP打包3D场景资源加载一半停止 [ 51%]

...显示,请问有知道是什么原因的吗?~~~~~~~~~~~~~ Laya.timer.loop()如何停止 laya2的Scene默认是文件模式,不会生成场景类了,此时该如何获得场景内的元素 2.2.0beta4 发布微信小游戏,安卓设备加载场景黑屏 用了第三方socket类 项目在IDE...

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

337. QQ 玩一玩 laya.bkadpter.js (新的版本) 报错 [ 50%]

...误:TypeError: tSound.play is not a function. (In 'tSound.play(startTime,loops)', 'tSound.play' is undefined)

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

338. UNITY导出的模型旋转不了 [ 50%]

...var vect = new Laya.Vector3(0,1,0); //每10毫秒旋转一次 //Laya.timer.loop(10,null,function(){ //obj.transform.rotate(vect,false,false); //}); })); })); })(this); class BoxControlScript extends Laya.Script3D { constructor() { super(); this.obj = null; this.rotation = new Laya.Vector3(0, 1, 0); ...

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

339. 高级应用-寻路导航 [ 50%]

...t].x, this.path[this.nextPathIndex++ % this.pointCount].z); }); Laya.timer.loop(40, this, loopfun); } function loopfun() { if (this._everyPath && this.index ; private _everyPath: any; private _position: Laya.Vector3 = new Laya.Vector3(0, 0, 0); private _upVector3: Laya.Vector3 = new Laya.Vector3(0, ...

来源: Laya_示例 发布时间: 20241118

340. Laya.Video内存泄漏问题 [ 50%]

...url = URL.createObjectURL(video_file); var video = new Laya.Video(); video.loop = true; video.load(blob_url); Laya.stage.addChild(video); video.play(); v = video; Laya.timer.once(5000, this, function() { v.destroy(); }); }顺便提供一个简单的修复方法: laya.device.js Line 623: 增加以...

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