大约有 158 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
Laya_社区(117) Laya3.0_api(11) Laya2.0_文档(10) Laya3.0_文档(7) Laya_示例(6) Laya2.0_示例(5) laya_api(1) Laya2.0_api(1)
...anel.vScrollBar.max=500; panel.vScrollBar.value=panel.vScrollBar.max; Laya.timer.frameLoop(12,this,onLoop); } private function onLoop():void { trace(panel.vScrollBar.value);//最大==500 } 2016-11-03 1 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 ...
来源: Laya_社区 发布时间: 20161103
...ysics.I.start() 里面 添加一下 或者 可以 直接调用 Laya.physicsTimer.frameLoop(1,this,this._update); 重新开启 物理世界的方法 2019-07-25 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 yggdra 相关问题 2.0一...
来源: Laya_社区 发布时间: 20190612
...以用定时器,在脚本里隐藏或者销毁这个粒子效果 Laya.timer.frameOnce(1,this,function(){粒子效果.destroy();}); 需要延迟一帧,不然销毁之后定时器还会查一帧,找不到对象会报错。 2018-06-15 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回...
来源: Laya_社区 发布时间: 20180615
...dler = new Handler(this, onChange); Laya.stage.addChild(progressBar); Laya.timer.loop(100, this, changeValue); } function changeValue() { if (progressBar.value >= 1) progressBar.value = 0; progressBar.value += 0.05; } function onChange(value) { console.log("进度:" + Math.floor(value * 100) + "%"...
来源: Laya2.0_文档 发布时间: 20210715
...修改旋转就可以。。。 var vect =new Laya.Vector3(0.1,0,0); Laya.timer.loop(100,this,function(){ fish.transform.Position(vect,true,false); }); 我想让他定时往左往右走。。。或者有个加速度。。。。JS代码在laya里。。。名字和使用方法都变了。。。 附...
来源: Laya_社区 发布时间: 20170918
...;audioBufferSourceNode.buffer = buffer;audioBufferSourceNode.start(0);Laya.timer.loop(1,this,this.drawHandler);}private function drawHandler():void{Laya.stage.graphics.clear();var dataArray:Uint8Array = new Uint8Array(analyser.frequencyBinCount);analyser.getByteFrequencyData(dataArray);var step:int ...
来源: Laya_社区 发布时间: 20181023
...图 let count1 = 1; Laya.timer.loop(3000, this, function () { sp.graphics.clear(); if (count1 == 0) { sp.graphics.drawLines(0, 0, path, "#0eff00", 5...
来源: Laya_社区 发布时间: 20170817
...ame1():void { xNum = Math.random()*7 - 3; yNum = Math.random()*7 - 3; Laya.timer.loop(20,this,onRun); Laya.timer.frameLoop(10,this,refresh); } private function refresh():void { IconSpr.graphics.clear(); iconSpr.graphics.clear(); if(htmlCanvas) htmlCanvas.clear(); htmlCanvas = iconSpr.drawToCanvas(ic...
来源: Laya_社区 发布时间: 20180113
...500毫秒的时间间隔播放颜色切换的矩形 Laya.timer.loop(500, this, createRect); })(); function createRect() { var c = new Sprite(); var color = (flag = !flag)?"#A52A2A":"#FFA500" ...
来源: Laya_社区 发布时间: 20170510
...LayaAir3.0引擎,那边实现videoTexture不用自己手动刷新 Laya.timer.frameLoop(1, this, this.updateVideo, [texture2D]); },true); } updateVideo(tempTexture:Laya.Texture2D){ if(this.htmlvideo.video.readyState === this.htmlvideo.video.HAVE_ENOUGH_DATA) { //更新视频纹理 tempTexture.loadI...
来源: Laya_社区 发布时间: 20240305