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

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

231. Label Text控件 无法显示全子图 [ 69%]

... class TextRender getFontSizeInfo 函数,最后部分    var xoff:int = Math.max( orix - pixelBBX[0], 0);    var yoff:int = Math.max( oriy - pixelBBX[1], 0);    var bbxw:int = pixelBBX[2] - pixelBBX[0];    var bbxh:int = pixelBBX[3] - pixelBBX[1]+1; 原来没有+1,如果效果不行再调...

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

232. 我用的HBox做的进度条为啥总是一闪一闪的。 [ 68%]

...显示啊 public onChange(value: number): void { console.log("进度:" + Math.floor(value * 100) + "%"); var num:number = Math.floor(value*100); // this.updateFont(num); this.updateFont(100); //test用 // if(num==100){ // G.I.loginManager.preload(); // } } private hbox:Laya.HBox; private updateFon...

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

233. ios旋转问题 [ 68%]

... if (width != 640) { var ratio:Number = width / 640; width = 640; height = Math.floor(height / ratio); } if (height > 1280) height = 1280; else if (height < 960) height = 960;*/ var browerRatio:Number = width / height ; if( height != 1136 ) { // w 640 // h 1136 var ratioW:Number = height / 113...

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

234. 照相机-多照相机 [ 68%]

...core.light.DirectionLight; import laya.d3.core.scene.Scene; import laya.d3.math.Vector3; import laya.d3.math.Vector4; import laya.d3.math.Viewport; import laya.d3.resource.TextureCube; import laya.d3.resource.models.Mesh; import laya.d3.resource.models.SkyBox; import laya.display.Stage; import laya....

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

235. laya.d3.math.Vector3 [ 68%]

...| Index | Frames No Frames Vector3Properties | Methods Packagelaya.d3.mathClasspublic class Vector3InheritanceVector3 ObjectImplements laya.d3.core.IClone Vector3 类用于创建三维向量。 Public Properties PropertyDefined By  x : NumberX轴坐标Vector3  y : NumberY轴坐标Vector3 ...

来源: Laya2.0_api 发布时间: 20190513

236. Sprite3D-Sprite3D克隆 [ 68%]

...material.StandardMaterial; import laya.d3.core.scene.Scene; import laya.d3.math.Quaternion; import laya.d3.math.Vector3; import laya.d3.math.Vector4; import laya.d3.resource.Texture2D; import laya.d3.resource.TextureCube; import laya.d3.resource.models.BaseMesh; import laya.d3.resource.models.Mesh; ...

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

237. 材质-BlinnPhong材质加载 [ 68%]

...hics.IndexBuffer3D; import laya.d3.graphics.VertexBuffer3D; import laya.d3.math.Quaternion; import laya.d3.math.Vector3; import laya.d3.math.Vector4; import laya.d3.resource.models.Mesh; import laya.display.Stage; import laya.events.Event; import laya.ui.Button; import laya.utils.Browser; import lay...

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

238. 3D中的Animator如何从指定的某一帧开始播放动画 [ 68%]

...Interval:int = 1 / animator.cacheFrameRate; //总帧数 var endFrame:int = Math.floor(maxTime / frameInterval); //计算开始帧 var startFrame:int = Math.floor(endFrame * (1 - percent)); animator.addClip(totalAnimationClip,"runShoot",startFrame); animator.on(Event.STOPPED, this, this.removeClip); ...

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

239. 阻止点击穿透问题 [ 67%]

...e.stopPropagation(); if(!Game.runing) { Game.runing = true; Game.stepNum = Math.floor(Math.random() * 6) + 1; console.log(Game.stepNum) Animate.role(Game.stepNum); } },[this.items.shaizi]);  弹层的代码: this.prizeAlertLayer = new Sprite(); this.prizeAlertLayer.zOrder = 90; this.prizeAlertLay...

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

240. 关于Graphics中drawPath方法使用arcTo的bug [ 67%]

...的   ----------- 查阅源码中 Context#arcTo方法中 有 len1 = r / Math.tan(halfAng);   这一行有点不太理解,大致意思是获取到角平分线上的半角 alpha 获取tan对边长度,感觉应该是 r / Math.tan(alpha)?   希望有人能够解答下我的困惑,感谢~   ...

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