大约有 1,449 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0053 秒)
...anaimaname) { // 第一次创建一个动画 if (null == this.mAnimaCur) { this.mAnimaCur = new laya.display.Animation(); this.mAnimaCur.interval = 100; this.addChild(this.mAnimaCur); } ...
来源: Laya_社区 发布时间: 20161205
...值 不知道是否正常,我修改了下 __proto.addSize=function(add){ if (add){ if(add > 0){ if (this.autoRelease){ ((this._memorySize+add)> this.autoReleaseMaxSize)&& (this.garbageCollection((1-this._garbageCollectionRate)*this.autoReleaseMaxSize)); } this._memorySize+=add; } } }...
来源: Laya_社区 发布时间: 20170915
...LayaNative只有Android版有这两个函数。 js示例如下: var n=3; if(window.conch){ window.conch.setOnBackPressedFunction(()=>{ console.log('press back '+n); if(n-- <=0){ window.conch.exit(); } else{ //用户自己的代码,例如返回上层页面 } }); } Copyright ©Layabox 2022 a...
来源: Laya3.0_文档 发布时间: 20230303
...ler = this._create(false, true, delay, caller, method, args, coverBefore); if (handler) handler.jumpFrame = jumpFrame; } 使用示例如下: const { regClass } = Laya; import { RuntimeScriptBase } from "./RuntimeScript.generated"; @regClass() export class RuntimeScript extends RuntimeScriptBase { ...
来源: Laya3.0_文档 发布时间: 20241014
...(texture) { console.log(texture.url); // 恢复默认并发加载个数。 if (++numLoaded == 3) { Laya.loader.maxLoader = 5; console.log("All done."); } } } new Loader_Sequence();module laya { import Texture = Laya.Texture; import Handler = Laya.Handler; export class Loader_Sequence { private numLo...
来源: Laya2.0_示例 发布时间: 20241119
... 提交 11 个回复 Damon 赞同来自: 华dee. 这是我见过最长的if else 2019-07-30 1 0 分享 微博 QZONE 微信 183*****693 赞同来自: 华dee. 好长的 else if 2019-07-31 1 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 感谢分享 2018-08-13 0 0 分享 微博 QZONE 微信 倍...
来源: Laya_社区 发布时间: 20180811
...game.js里面weapp_adapter.js是放在第一处的 仍然有这个问题 if ((typeof swan !== 'undefined') && (typeof swanGlobal !== 'undefined')) { require("swan-game-adapter.js"); require("libs/laya.bdmini.js"); } else if (window&&window.wx) { require("weap...
来源: Laya_社区 发布时间: 20181217
Image不能清空图片吗? if(!this.lastMakeMc){ //类型小图片 this.lastMakeMc = new Image(); this.collectUIMC.addChild(this.lastMakeMc); this.lastMakeMc.pos(123,68); this.lastMakeMc.size(32,32); }else{ this.lastMakeMc.skin = "face/type"+type+".png"; } if(type == -999){ this.lastMakeMc.dispo...
来源: Laya_社区 发布时间: 20180623
... private compileShader(model: any): void { //如果是粒子特效 if (model instanceof Laya.ShuriKenParticle3D) { var shuriKenParticle3D: Laya.ShuriKenParticle3D = model as Laya.ShuriKenParticle3D; var render:Laya.ShurikenParticleRenderer = sh...
来源: Laya_社区 发布时间: 20190404
... function onMouse(e:Event):void { //存储over状态的显示对象的name if(e.type==Event.MOUSE_OVER) { arr.push(e.target.name); } //遍历arr处于over状态的显示对象,如果该显示对象已经触发了out事件,则将其从数组移除 else { for(var i:int=0;i<arr.length;i++) { if(...
来源: Laya_社区 发布时间: 20170502