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

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

101. 灯光-聚光 [ 49%]

...aternion = new Laya.Quaternion(); var _position = new Laya.Vector3(); Laya.timer.frameLoop(1, null, function () { Laya.Quaternion.createFromYawPitchRoll(0.025, 0, 0, _quaternion); Laya.Vector3.transformQuat(spotLight.transform.position, _quaternion, _position); spotLight.transform.position = _positi...

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

102. as编译器1.7.5beta的问题 [ 49%]

...穿透的问题 关于逻辑贞更新间隔机制、时间和其他一些Timer相关的问题 关于Dialog遮罩层移除解决问题的说明 问题状态 最新活动: 2017-06-26 21:05 浏览: 1006 关注: 3 人 cuixueying • 2017-06-27 10:54 你参照上面开发者的做法,在自变量参数...

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

103. ProgressBar属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 48%]

...d(progressBar); //时间间隔循环,每100毫秒改变一次数据 Laya.timer.loop(100, this, changeValue); } /***时间间隔循环回调,更新进度条***/ private function changeValue():void { //最大为1,每次间隔更新5% if (progressBar.value >= 1) progressBar.value = 0; progressBar...

来源: Laya2.0_文档 发布时间: 20210715

104. 性能测试-卡通人物2 [ 47%]

...text.fontSize = 60; text.color = "#ff0000" Laya.stage.addChild(text); Laya.timer.frameLoop(1, this, gameLoop); })(); function createCharacters() { var char; var charSkin; for (var i = 0; i = 0; i--) { characters[i].update(); } if (Laya.timer.currFrame % 60 === 0) { text.text = Stat.FPS.toString(); }...

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

105. 【官网代码】加载dom音频报错,怎么回事? [ 47%]

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

106. 自定义shader-简单shader [ 47%]

...terial = customMaterial; var rotation = new Laya.Vector3(0, 0.01, 0); Laya.timer.frameLoop(1, this, function () { layaMonkey.transform.rotate(rotation, false); }); function initShader() { var attributeMap = { 'a_Position': Laya.VertexElementUsage.POSITION0, 'a_Normal': Laya.VertexElementUsage.NORMAL...

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

107. 性能测试-卡通人物2 [ 47%]

...text.fontSize = 60; text.color = "#ff0000" Laya.stage.addChild(text); Laya.timer.frameLoop(1, this, this.gameLoop); } createCharacters() { let char; let charSkin; for (let i = 0; i = 0; i--) { characters[i].update(); } if (Laya.timer.currFrame % 60 === 0) { text.text = Stat.FPS.toString(); } } } cla...

来源: Laya2.0_示例 发布时间: 20241118

108. LayaAir和原生DOM交互(ActionScript-2D进阶篇(AS3)-扩展模块) [ 46%]

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

来源: Laya2.0_文档 发布时间: 20210715

109. 【简单跑酷--JS版】---Lv.2 类之间的引用以及背景滚动实现 [ 45%]

...理函数,用于背景位置的更新,实现背景滚动效果。 Laya.timer.frameLoop(1, this, this.onLoop) } _proto.onLoop = function(){ //移动 this.x -= 5; this.moveX = Math.abs(this.x); //当背景1向左移动出游戏的显示区域 1600,则将背景1的x轴坐标,向右移动 1600*2. ...

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

110. ScrollRect设置会引起其他的UI资源无法正在显示 [ 45%]

...id { trace("[TestView.StartMove]") // TODO Auto Generated method stub Laya.timer.loop(100,this,UpdatePath,[len]); } private function UpdatePath(len:int):void { // TODO Auto Generated method stub var show:int = len -1; for(var i=0;i<len;i++){ if(arr[i]){ arr[i].x+= speed; if(arr[i].x>= show* PA...

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