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

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

261. 示例 骨骼动画换装 加不上点击事件 [ 43%]

...n); mArmature.showSkinByName(mSkinList[0]); play(); //changeSkin(); //Laya.timer.loop(1000, this, changeSkin); } 2017-08-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 10 个回复 cuixueying 赞同来自: 为你的mArmatu...

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

262. 3D动画播放时,无法改变自身及子对象的任何属性,动画停止后才可以,是什么原因? [ 42%]

...的帧属性面板不见了 Tween如何实现无限循环改变alpha? Laya.timer.loop()如何停止 谷歌浏览器播放mp3出现The AudioContext was not allowed to start. matter中layasprite怎么改变图片大小? 使用了u3D导出来的粒子,不停的显示移除并销毁其克隆对象...

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

263. 求ShuriKenParticle3D用法 [ 42%]

...           let self = this;                 Laya.timer.loop(300, null, function () {                     console.log('8: ' + self.particleSystem.aliveParticleCount);                 });             }         }     } } ...

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

264. laya.device.media.Video_API3.0 [ 42%]

...eY scene scrollRect seekable seeking skewX skewY stage staticCache texture timer transform url videoHeight videoWidth viewport visible volume width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance addInputChild callLater canPlayType clea...

来源: Laya3.0_api 发布时间: 20231102

265. 我用as3调试的matter.js,刚体发生碰撞后不会旋转,我的代码在附件里 [ 41%]

...e.world, [   ground1,ground2,ground3,ground4]);             Laya.timer.loop(1000, this, add_F);         }         private function add_F():void         {             var rockOptions:Object = {                 stiffness: 1,                 ...

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

266. rigidBody.applyForce 对刚体应用力,物体没有移动 [ 41%]

...  //rigidBody.linearVelocity = new Laya.Vector3(0,0,-1);         Laya.timer.loop(2000, this, function(){console.log(rigidBody.linearVelocity.z)});     } } //激活启动类 new PhysicsWorldBaseCollider(); 2019-10-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...

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

267. laya.media.VideoNode_API3.0 [ 41%]

...e scrollRect seekable seeking skewX skewY source stage staticCache texture timer transform url videoHeight videoTexture videoWidth viewport visible volume width x y zOrder Methods _initialize _processActive _setX _setY addChild addChildAt addChildren addComponent addComponentInstance bubbleEvent cal...

来源: Laya3.0_api 发布时间: 20231115

268. laya.display.Animation_API3.0 [ 41%]

...caleX scaleY scene scrollRect skewX skewY source stage staticCache texture timer transform url viewport visible width x y zOrder Methods _initialize _processActive addChild addChildAt addChildren addComponent addComponentInstance addLabel bubbleEvent callLater clear clearTimer contains customRender ...

来源: Laya3.0_api 发布时间: 20231115

269. 路径显示会添加DrawCall,每增加一条路径都会添加,有什么办法降DrawCall [ 39%]

...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-1)...

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

270. 分享个用美术资源做位图文本的方法。。。 [ 38%]

...p); Laya.stage.addChild(bp1); Laya.stage.addChild(bp2); var t = 1000; Laya.timer.loop(1000,that,function(){ bp.text = t + ""; bp1.text = t + ""; bp2.text = t + ""; t++; }) } )); } } new GameMain(); 运行效果基本上还行, /* * 位图字体; */ class BPFont extends Laya.Sprite{ // 文本内容...

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