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

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

961. laya.spine.js问题以及spine.core.js问题 [ 52%]

...,因为parseSpineAni会报错,导致ERROR事件也抛不出去。   private loop() { if (this.assetManager.isLoadingComplete()) { this.parseSpineAni(); return; } if (this.assetManager.hasErrors()) { this.event(Event.ERROR, "load failed:" + this.assetManager.getErrors()); return; } Laya.timer.fr...

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

962. 动画状态脚本(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 51%]

...t default class AnimatorStateScriptTest extends Laya.AnimatorStateScript { private _text:Laya.Text; constructor() { super(); } get text():Laya.Text { return this._text; } set text(value) { this._text = value; } /** * 动画状态开始时执行。 */ onStateEnter() { console.log("动画开始播放...

来源: Laya2.0_文档 发布时间: 20210715

963. 为什么SOCKET接收数据BYTE内存会越来越大 [ 51%]

...数据大小是一致的; 但在google监视内存发现内存越来越大 private receiveHandler(msg: any = null): void { ///接收到数据触发函数 this._msgByte.clear(); this._msgByte.writeArrayBuffer(msg);//把接收到的二进制数据读进byte数组便于解析。 this._msgByte.pos = 0;/...

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

964. Laya引擎bug [ 51%]

...bug laya分析文本换行源码内有bug laya.core.js内。 /**     *@private     *分析文本换行。     */     __proto.parseLines=function(text){         var needWordWrapOrTruncate=this.wordWrap || this.overflow==Text.HIDDEN;         if (needWordWrapOrTruncate){...

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

965. 1.7.18beta下转换3D坐标不正确 [ 51%]

... Laya.Stage.SCALE_SHOWALL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; private animate(): void {    this._position.x = Math.sin(this.scaleDelta += 0.01);    this.layaMonkey3D.transform.position = this._position;    this.camera.viewport.project(this.layaMonkey3D.transform.position, this.cam...

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

966. 发布到微信小游戏后Timer的getHandler报错了 [ 51%]

...的code.js, 是在Timer的这个函数中,获取$_TID时报错了 /**@private */ __proto._getHandler=function(caller,method){ var cid=caller ? caller.$_GID || (caller.$_GID=Utils.getGID()):0; var mid=method.$_TID || (method.$_TID=(this._mid++)*100000); return this._map[cid+mid]; } 请教一下...

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

967. UI运行时 · LayaAir3.0文档 · LAYABOX [ 51%]

...roperty } = Laya; @regClass() export class NewScript extends Laya.Script { private ui : RuntimeScript; onStart() { // 获得场景的Runtime对象 this.ui = this.owner.scene as RuntimeScript; // Button添加鼠标事件,让Image不显示 this.ui.Button.on( Laya.Event.MOUSE_DOWN, null, ()=>{ thi...

来源: Laya3.0_文档 发布时间: 20241014

968. 2.0 beta UI Button无法获取 [ 51%]

...nstructor() { super(); this.btn_attack.on("click", this, this.onAttack); } private onAttack(): void { // TODO } } 上面代码,btn_attack 按钮是 undefined 对象,没有被初始化的,是我做法不对么?? 另外,试了其他UI,加入Button组件,都是没有被初始化的,...

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

969. 怎么打开第二个工程 [ 51%]

...Laya.init(500,500); Laya.stage.once(Event.CLICK,this,this.clickHandler); } private function clickHandler():void { var iframe:Object = Browser.document.createElement("iframe"); iframe.style.position ="absolute";//设置布局定位。这个不能少。 iframe.style.zIndex = 100;//设置层级 iframe....

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

970. Animation的createFrames为何加载不了有的图集资源 [ 51%]

... type: Loader.ATLAS}], Handler.create(this, onLoaded)); this.onLoaded(); } private function onLoaded():void { //Animation.createFrames(["res/atlas/monsterbeattack/0.png","res/atlas/monsterbeattack/1.png","res/atlas/monsterbeattack/2.png"], "aa") Animation.createFrames(["monsterbeattack/0.png","monst...

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