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

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

301. 解析sk资源报错 [ 83%]

...       public class CombatRole extends BaseRole     {         private var _templet:Templet;         public function CombatRole()         {             super();             initView();         }                  private function initView():...

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

302. Clip组件Bug:Play方法无法结束循环 [ 83%]

...a.Clip {     /**      *开始帧位置      *      * @private      * @memberof GifView      */     private frameIndex = 0;     /**      *结束帧位置      *      * @private      * @memberof GifView      */     private to...

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

303. 网络和格式-XML [ 83%]

...ontainsError); console.log("\n"); this.proessXML(xmlValue); } // 使用xml private proessXML(source:string):void { try { var xml:any = Utils.parseXMLFromString(source); } catch (e) { console.log(e.massage); return; } this.printDirectChildren(xml); } // 打印直接子级 private printDirectChildren(...

来源: Laya2.0_示例 发布时间: 20241124

304. 龙骨动画的监听回调,有时能回调,有时不能回调 [ 83%]

...zFarmersAni";  export default class DdzLandlordAni extends SingleBase{   private mFactory: Laya.Templet = null; public isFinish = false; private mArmatureUsed:Array<Laya.Skeleton> = []; private mArmatureUnUsed:Array<Laya.Skeleton> = [];  public static getInstance():DdzLandlordAni{ ret...

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

305. Laya.timer.loop() 报错 Cannot read property 'loop' of null [ 83%]

...ge; // public _list: List; //创建一个 List 类的实例对象 list 。 private n:number = 0; private x0:number = 0; private y0:number = 0; constructor(){super();} onEnable():void{ this.x = this.x0; this.y = this.y0; Laya.timer.loop(20, this, this.frameWork); // 每 20 ms 执行一次 } private f...

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

306. 有没有浮雕滤镜? [ 83%]

...xueying 赞同来自: ohkei 目前只有以下的滤镜和混合模式 /**@private 模糊滤镜。*/ public static const BLUR:int = 0x10; /**@private 颜色滤镜。*/ public static const COLOR:int = 0x20; /**@private 发光滤镜。*/ public static const GLOW:int = 0x08; public static const NAMES:A...

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

307. 2.0下资源加载和销毁内存问题 [ 83%]

.../2.0版本 这里区别为export default class bitmap extends Laya.Image { private szurl:string="" constructor(url:string){ super() this.onUrlChangeHandler(url); } protected onUrlChangeHandler(url:string):void     { if(this.szurl!="") this.disp() this.szurl=url; if(url==null){ this.graphics.clea...

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

308. replaceSlotSkinName对于spine换肤不成功 [ 83%]

...oblin例子,替换的图片全在atlas里// 程序入口 class GameMain{ private m_skeleton : Laya.Skeleton; private m_templet : Laya.Templet; constructor() { Laya.init(1334,750,Laya.WebGL); this.m_templet = new Laya.Templet(); this.m_templet.on(Laya.Event.COMPLETE, this, this.parseComplete); this...

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

309. Sprite用graphics绘制图形后,mouse_over触发scale显示有问题 [ 83%]

Sprite用graphics绘制图形后,mouse_over触发scale显示有问题 private _initView():void { if(this._objectInfo.templateInfo.type == "hole") { this._body = new Sprite(); this._body.graphics.drawCircle(0, 0, this._objectInfo.templateInfo.width, "#ff0000"); this._body.width = this._objectInfo....

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

310. 颜色滤镜 差值变化 [ 82%]

...   /**      * 颜色工具类      */ export class ColorTool { private _targetsValue: number = 16777215; private _targetsLastValue: number = null; private targets: Array<Laya.Sprite> = null; public static instance: ColorTool = null; private targetsFilter: Laya.ColorFilter = null; pr...

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