大约有 1,204 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0052 秒)
Laya_社区(690) Laya_示例(137) Laya2.0_文档(123) Laya2.0_示例(116) Laya3.0_文档(59) Laya3.0_api(39) laya_api(29) Laya2.0_api(11)
...成一分钟一次了 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
...关的链接 提交 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
...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
...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
...跑偏了,跟设定的不一样,怎么调整?谢谢! private function setXuanzhuanEffect():void{ // xuanzhuan.pivot(xuanzhuan.width/2,xuanzhuan.height/2); Laya.timer.frameLoop(1,this,onLoopRotation,[...
来源: Laya_社区 发布时间: 20171225
...laya { export class Sprite_Guide { private width = 750; private height = 1334; constructor() { Laya3D.init(this.width, this.height); Laya.stage.setScreenSiz...
来源: Laya_社区 发布时间: 20200119
...: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
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
...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
如何解析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