大约有 461 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
Laya_社区(367) Laya3.0_api(21) Laya2.0_文档(21) laya_api(14) Laya2.0_api(14) Laya3.0_文档(13) Laya_示例(6) Laya2.0_示例(5)
...Sound 不出声音 playMusic 其实也是调用 playSound(url, loops, complete, AudioSound, startTime); 为什么这个就能出声音!奥妙在哪里! 难道就是多一个 AudioSound类么 playSound穿过来的就是 null而已! 2017-07-24 0 0 分享 微博 QZONE 微信...
来源: Laya_社区 发布时间: 20170724
...得问题,但是不断切换音乐的时候也会增加,如 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
...于遍历产生的sprite的点击事件,急,大神帮看哈 Laya.timer.loop()如何停止 做好的粒子特效在U3D里循环正常。在LAYA插件里预览跳帧闪烁。序列素材本身也是循环的。但是不知道为什么会跳帧。 点击事件不起效 问题状态 最新活动: 20...
来源: Laya_社区 发布时间: 20180615
...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
...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
...显示,请问有知道是什么原因的吗?~~~~~~~~~~~~~ Laya.timer.loop()如何停止 laya2的Scene默认是文件模式,不会生成场景类了,此时该如何获得场景内的元素 2.2.0beta4 发布微信小游戏,安卓设备加载场景黑屏 用了第三方socket类 项目在IDE...
来源: Laya_社区 发布时间: 20180810
...误:TypeError: tSound.play is not a function. (In 'tSound.play(startTime,loops)', 'tSound.play' is undefined)
来源: Laya_社区 发布时间: 20180328
...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
...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
...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