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

大约有 2,728 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0069 秒)

1071. Sprite-显示图片 [ 77%]

...all"; Laya.stage.bgColor = "#232628"; this.showApe(); } private showApe(): void { // 方法1:使用loadImage var ape: Sprite = new Sprite(); Laya.stage.addChild(ape); ape.loadImage("res/apes/monkey3.png"); // 方法2:使用drawTexture Laya.loader.load("res/apes/monkey2.png", Handler.create(this,...

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

1072. Image加载完成后的图片大小重设问题 [ 77%]

...r() {         super();        init();     }     public init ():void     {         this.bg_img.loadImage("ui/bg.jpg",0,0,Laya.stage.width,Laya.stage.height,Laya.Handler.create(this,this.onComplete));         Laya.stage.on(Laya.Event.RESIZE,this,this.onResize);     }     onCo...

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

1073. 3d资源无法写入缓存 [ 77%]

...File=function(readyUrl,md5Name,isAdd,encoding,callBack,fileSize){ (isAdd===void 0)&& (isAdd=true); (encoding===void 0)&& (encoding=""); (fileSize===void 0)&& (fileSize=0); var fileurlkey=readyUrl; if(MiniFileMgr.filesListObj['fileUsedSize']==null) MiniFileMgr.filesListObj['fi...

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

1074. 列表组件 · LayaAir3.0文档 · LAYABOX [ 77%]

.../ 组件被启用后执行,例如节点被添加到舞台后 onEnable(): void { // 给List对象赋值 var data: Array<any> = []; for (var m: number = 0; m < 20; m++) { data.push({ m_label: "No." + m }); } this.list.array = data; } } 代码中,m_label的命名要与List列表项下的La...

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

1075. TiledMap地图 · LayaAir3.0文档 · LAYABOX [ 77%]

... this.completeHandler)); } //添加地图到Scene2D下 private onLoaded(): void { this.tMap.mapSprite().removeSelf(); this.owner.addChild(this.tMap.mapSprite()); } //地图加载完成的回调 private completeHandler(e: any = null): void { this.onLoaded(); } } 编译运行代码,效果如图3-3...

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

1076. LayaAir IDE 1.4.0新增功能 附加(扩展)脚本的使用 [ 77%]

...直接获取到Button组件的实例 public function set owner(v:Sprite):void { _owner = v; //由于时序问题,我们需要在此处添加逻辑代码,确保_owner不为null if(_isScal&&_owner) { _owner.on(Event.MOUSE_DOWN,this,onDown); } else { return; } } public function get isScale(...

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

1077. CPU优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 77%]

...以使用局部变量来保存它: ```javascript private function foo():void {     var prop = target.prop;     // 使用prop     process1(prop);     process2(prop);     process3(prop); } ``` ### 二、计时器 ​ LayaAir提供两种计时器循环来执行代码块。 1....

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

1078. canvas下资源清理的问题 [ 77%]

...      }                  private function onClick(e:Event):void         {             switch(e.currentTarget)             {                 case btn1:                     show();                     break;        ...

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

1079. UI-ComboBox [ 77%]

...n, Handler.create(this, this.onLoadComplete)); } private onLoadComplete(): void { var cb: ComboBox = this.createComboBox(this.skin); cb.autoSize = true; cb.pos((Laya.stage.width - cb.width) / 2, 100); cb.autoSize = false; } private createComboBox(skin: String): ComboBox { var comboBox: ComboBox = ne...

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

1080. Sprite-容器 [ 77%]

...Laya.stage.bgColor = "#232628"; this.createApes(); } private createApes(): void { // 每只猩猩距离中心点150像素 var layoutRadius: number = 150; var radianUnit: number = Math.PI / 2; this.apesCtn = new Sprite(); Laya.stage.addChild(this.apesCtn); // 添加4张猩猩图片 for (var i: number...

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