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

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

541. 最小化一定时间后心跳变成一分钟一次了 [ 70%]

...成一分钟一次了 Laya.timer.frameLoop(1, this, this.run, null);   private last:number = 0;      private run() {     let now = Date.now();     console.log("fightmng run >>  " + now, " usetime:"+(now-this.last));     this.last = now; }   代码如上...

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

542. 如何在3d场景中添加文字 [ 70%]

...关的链接 提交 2 个回复 ltmking 赞同来自: /**玩家名称 */ private txtName:Laya.Text; //场景的相机 public otherGameScene:Laya.Camera; private _outPos:Laya.Vector3 = new Laya.Vector3(); this.txtName = new Laya.Text(); this.txtName.color = "#FFFFFF"; this.txtName.text = this.playerN...

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

543. laya3d 场景重复添加3d物体报错,必现! [ 70%]

...0 public static const maxAllowVertexCount:int = 10;         /** @private */         public static const maxAllowAttribueCount:int = 900;//TODO:         /** @private */         public static const maxIndicesCount:int = 32000; 2019-09-27 0 1 分享 微博 QZONE 微信 ...

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

544. 求助高手请进,关于场景导入的问题~ [ 70%]

...te("LayaScene_01/loveScene.ls",Handler.create(this,this.completeHandler)); private function completeHandler():void{     var scene:Scene = Laya.loader.getRes("LayaScene_01/loveScene.ls");     Laya.stage.addChild(scene); }   我现在的问题是,我创建一个继承Scene的类,在这个类...

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

545. 设置旋转特效后,旋转对象的位置跑偏了 [ 70%]

...跑偏了,跟设定的不一样,怎么调整?谢谢!         private function setXuanzhuanEffect():void{             //             xuanzhuan.pivot(xuanzhuan.width/2,xuanzhuan.height/2);                       Laya.timer.frameLoop(1,this,onLoopRotation,[...

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

546. 新手引导在ios浏览器表现异常 [ 70%]

...laya  {     export class Sprite_Guide      {         private width = 750;         private height = 1334;         constructor()          {             Laya3D.init(this.width, this.height);             Laya.stage.setScreenSiz...

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

547. 关于mouseThough=true的问题 [ 70%]

...:Loader.IMAGE}); Laya.loader.load(assets,Handler.create(this,onLoaded)); } private function onLoaded():void{ var img:Image = new Image("fish_6.png"); img.on(Event.CLICK,this,onClick); img.mouseThrough = true; Laya.stage.addChild(img); } 代码就这么简单,图片我传到附件里面 s...

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

548. laya 1.0 源码中 RunDriver.as里measureText的问题 [ 70%]

LayaAir引擎 laya 1.0 源码中 RunDriver.as里measureText的问题 private static var hanzi:RegExp = new RegExp("^[\u4E00-\u9FA5]$"); private static var fontMap:Array = ; public static var measureText:Function = function(txt:String, font:String):* { var isChinese:Boolean = hanzi.test(txt); if (is...

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

549. [LayaAir3]Laya3.x graphics.drawCurves 闪烁的问题 [ 70%]

...Lines来画。给你 一个参考代码   export class CatmullRomSpline { private points: number[]; constructor(points: number[]) { if (points.length < 4 || points.length % 2 !== 0) { throw new Error("At least two points (four numbers) are required, and the total number of values must be even");...

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

550. 如何解析json文件并获取某对象值? [ 70%]

如何解析json文件并获取某对象值? private jsonParse() { Laya.loader.load("res/atlas/resTest0.json", Handler.create(this, this.onLoaded), null, Loader.JSON); } private onLoaded() { var json : JSON = Laya.Loader.getRes("res/atlas/resTest0.json"); var jsTx = JSON.stringify(json); } 已经...

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