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

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

51. 输入设备-贪吃蛇(重力感应) [ 92%]

...ze); food.graphics.drawRect(0, 0, foodSize, foodSize, "#00BFFF"); food.x = Math.random() * Laya.stage.width; food.y = Math.random() * Laya.stage.height; } } class Segment extends Laya.Sprite { constructor(width, height) { super(); this.size(width, height); this.init(); } init() { this.graphics.drawR...

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

52. 求计算三角形夹角的Laya代码 [ 91%]

...-c1,a2-c2,a3-c3); cosA= ((a1-b1)*(a1-c1)+(a2-b2)*(a2-c2)+(a3-b3)*(a3-c3))/(Math.sqrt((a1-c1)*(a1-c1)+(a2-c2)*(a2-c2)+(a3-c3)*(a3-c3))*Math.sqrt((a1-b1)*(a1-b1)+(a2-b2)*(a2-b2)+(a3-b3)*(a3-b3))) jA=Math.acos(cosA); 2019-12-23 0 1 分享 微博 QZONE 微信 魔狼 赞同来自: // a为A点 Calculate(a...

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

53. Math.PI / 2弧度是正数,为什么是顺时针方向呢? [ 91%]

Math.PI / 2弧度是正数,为什么是顺时针方向呢?   附件 : --> 2019-05-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 正负,方向,一个符号就能改变,纠...

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

54. Sprite-容器 [ 91%]

...Ape() { const Sprite = Laya.Sprite; const layoutRadius = 150, radianUnit = Math.PI / 2; // 该容器用于装载4张猩猩图片 this.apesCon = new Sprite(); Laya.stage.addChild(this.apesCon); // 添加4张猩猩图片 let ape; for (let i = 0; i < 4; i++) { ape = new Sprite(); this.apesCon.addChild(...

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

55. Sprite-容器 [ 91%]

...只猩猩距离中心点150像素 var layoutRadius = 150; var radianUnit = Math.PI / 2; apesCtn = new Sprite(); Laya.stage.addChild(apesCtn); // 添加4张猩猩图片 for (var i = 0; i < 4; i++) { var ape = new Sprite(); ape.loadImage("../../res/apes/monkey" + i + ".png"); ape.pivot(55, 72); // 以...

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

56. 十几秒以后动画渲染时间变长,帧率变慢,是怎么回事? [ 91%]

...this._doll_area.h = doll_area.h; }  // 设置容器的宽高 this.width = Math.max( this._blood_area.w, this._demon_area.w, this._doll_area.w );  this.height = this._blood_area.h + this._demon_area.h + this._doll_area.h;  this.graphics.drawRect( 0, 0, this.width, this.height, null, "#ff0000", 1);...

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

57. 渲染性能实例问题 [ 91%]

...x = new Laya.Sprite();for(var i=0;i&lt;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

58. Laya.Point替代了laya.maths.Point [ 91%]

Laya.Point替代了laya.maths.Point 文档没有更新,到处都找不到相关的说明,最后到处翻才找到。 附件 : --> 新建文本文档.zip 2022-01-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回...

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

59. laya.d3.math.Ray [ 90%]

...es | Index | Frames No Frames RayProperties | Methods Packagelaya.d3.mathClasspublic class RayInheritanceRay Object Ray 类用于创建射线。 Public Properties PropertyDefined By  direction : Vector3方向Ray  origin : Vector3原点RayPublic Methods  MethodDefined By  Ray(origin:Vec...

来源: laya_api 发布时间: 20170929

60. laya.d3.math.ContainmentType [ 90%]

...es | Index | Frames No Frames ContainmentTypeConstants Packagelaya.d3.mathClasspublic class ContainmentTypeInheritanceContainmentType Object ContainmentType 类用于定义空间物体位置关系。 Public Constants ConstantDefined By  Contains : int = 1[static] ContainmentType  Disjoint ...

来源: laya_api 发布时间: 20170929