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

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

1. 渲染性能实例问题 [ 100%]

...ew Laya.Sprite();for(var i=0;i<10000;i++){txt=new Text();txt.text=(Math.random()*100).toFixed(0);txt.color="#CCCCCC";txt.x=Math.random()*550;txt.y=Math.random()*400;textBox.addChild(txt);}Laya.stage.addChild(textBox); 附件 : --> 2019-05-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...

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

2. 3D网格添加刚体后设置欧拉角出现位置错误 [ 91%]

...         //设置旋转角度         this.tmpVector.setValue(Math.random() * 360, Math.random() * 360, Math.random() * 360);         box.transform.rotationEuler = this.tmpVector;         //设置掉落位置         this.tmpVector.setValue(-2, 2, -2);         box.transform.p...

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

3. 简单的震屏效果 [ 90%]

...        //随机获取震动方向           dir = Math.random() > .5 ? 1 : -1;         //随机获取X轴移动量           offX = Math.random() * 5 * dir + vibrateObj.x;         //随机获取Y轴移动量           offY = Math....

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

4. 给模型动态添加脚本报错 [ 89%]

...form.localPosition = new Laya.Vector3(this.startPos.x + (4.5 - Math.random() * 9), this.startPos.y, this.startPos.z + (2.5 - Math.random() * 5));                 console.log('----------------goldnode', goldNode);                 this.playerGoldArr.pu...

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

5. 在LayaAir1.7.3beta中使用WebGL渲染下粒子系统像素颜色丢失的问题 [ 88%]

...tartColor=MathUtil.lerp(settings.minStartColor,settings.maxStartColor,Math.random()); particleData.endColor=MathUtil.lerp(settings.minEndColor,settings.maxEndColor,Math.random()); } 改为 if (settings.disableColor){ for (i=0;i < 3;i++){ particleData.startColor=1; particleData.endColor=1; } parti...

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

6. timer无法执行 [ 87%]

...hootBall); }   public shootBall(): void{ //生成空中降落的球 //var random: number = Math.random()*24-7; let ball: Laya.MeshSprite3D = new Laya.MeshSprite3D(Laya.PrimitiveMesh.createSphere(1)); this.scene1.addChild(ball);   ball.transform.position = new Laya.Vector3((Math.random() - 0.5) * 2...

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

7. 为什么会出现报错 ani not found:ufo1_down [ 83%]

...ype === "enemy3"){ // 随机是子弹道具还是医疗包 var type = Math.random() < 0.7 ? 2 : 3; var item = Laya.Pool.getItemByClass("role",Role); // 初始化信息 item.init("ufo" + (type - 1),role.camp,1,1,15,type); // 设置位置 item.pos(role.x,role.y); // 添加到舞台上 Laya.stage.ad...

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

8. 点击区域问题 [ 82%]

...r() {     sp.graphics.clear();     var rc:number = Math.floor(Math.random()*0xffffff);     sp.graphics.drawRect(-50,-100,100,100,"#"+rc); } 这样多包几层,点击区域就会怪怪的,绘制的区域和点击区域不一样,不知道是不是我理解的有问题 2018-01-06 添...

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

9. 为什么会出现报错 ani not found:ufo1_down [ 82%]

...ype === "enemy3"){ // 随机是子弹道具还是医疗包 var type = Math.random() < 0.7 ? 2 : 3; var item = Laya.Pool.getItemByClass("role",Role); // 初始化信息 item.init("ufo" + (type - 1),role.camp,1,1,15,type); // 设置位置 item.pos(role.x,role.y); // 添加到舞台上 Laya.stage.ad...

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

10. toFixed(0)函数是什么作用? [ 82%]

...什么作用? text = new Text(); text.fontSize = 20; text.text = (Math.random() * 100).toFixed(0); text.rotation = Math.random() * 360; text.color = "#CCCCCC"; 2018-03-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个...

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