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

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

501. 屏幕适配的缩放模式详解(ActionScript-2D基础篇(AS3)-屏幕适配) [ 72%]

...                    //全局文本信息         private var txt:Text;                    public function SmartScale_T()          {         //初始化舞台大小         Laya.init(1136, 640);                 ...

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

502. UI编辑发布后运行lose skin [ 72%]

...Laya.Handler; import Loader = Laya.Loader; // 程序入口 class GameMain{ private begin: Begin; constructor() { Laya.init(600,400, WebGL); Laya.stage.bgColor = "#000000"; Laya.loader.load("comp/button.png", Handler.create(this, this.onLoaded)); } private onLoaded(): void { this.begin = new Begin();...

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

503. 对象mask的区域改变问题! [ 72%]

对象mask的区域改变问题! private addedToStage():void{ this.__mask = new Laya.Sprite(); this.__mask.graphics.drawRect(0,0,this.img_bar.width,this.img_bar.height,"#000000"); this.setValue(0); } private setValue(v:number):void{ this.__mask.scaleX = v; this.img_bar.mask = null;//第二次设...

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

504. 为什么hitTestPoint始终是false? [ 72%]

为什么hitTestPoint始终是false? class TestUI extends Laya.Sprite { private s:Laya.Sprite = new Laya.Sprite(); constructor() { super(); var img:Laya.Image = new Laya.Image("comp/bg.png"); this.s.addChild(img); this.addChild(this.s); Laya.stage.on(Laya.Event.CLICK, this, this.hitPoint); } priv...

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

505. runTime使用(ActionScript-IDE篇(AS3)-组件化开发相关) [ 72%]

...听。离开时还原按钮。 this.on(Event.MOUSE_OUT,this, scaleBig); } private function scaleBig():void { //变大还原的缓动效果 Tween.to(this, {scaleX:1,scaleY:1},scaleTime); } private function scaleSmall():void { //缩小至0.8的缓动效果 Tween.to(this,{scaleX:0.8,scaleY:0.8},scaleTi...

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

506. list的_dataSource问题。 [ 72%]

...Handler = new Handler(this, this.onInitItem); list.array=[{a:1},{a:2}];   private onInitItem(item,index){}   在 onInitItem 中怎么得到他的数据?list.array 里面的那个 {a:1}   我看源码中有 _dataSource ,但是方法不是公开的。要如何使用 (不能用 list.array[inde...

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

507. 小游戏的后台切换事件名是什么?? [ 71%]

...er.window.wx.onShow(onShow); MiniAdpter.window.wx.onHide(onHide); } static private function onShow(res):void { console.warn("小游戏回到前台", res); } static private function onHide():void { console.warn("小游戏隐藏到后台"); } } } 2018-07-26 1 0 分享 微博 QZONE 微信 渔歌 赞同...

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

508. 像素线 · LayaAir3.0文档 · LAYABOX [ 71%]

...Tool工具类,方便转换使用: //Tool工具类 export class Tool { private static transVertex0: Laya.Vector3 = new Laya.Vector3(); private static transVertex1: Laya.Vector3 = new Laya.Vector3(); private static transVertex2: Laya.Vector3 = new Laya.Vector3(); private static corners: Laya.Vecto...

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

509. LayaBox 出错啦,请把此信息截图给研发商 SimpleSingletonList [ 71%]

....     /**解决因为卡顿在多点触摸期间导致的bug*/     private static SingletonList_expand(){         Laya.SingletonList.prototype["_remove"] = function(index){             // @xd added, 如果index == -1 不执行             if(index =...

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

510. bitmapFont.loadFont()加载多个地址导致位图输出重 [ 71%]

...extureList("\n6+", ["res/fontadd/num6.fnt","res/fontadd/num+.fnt"]);     private setDataByTextureList(value:string, urls:string[]){ for(var i=0;i<urls.length;i++){ var bitmapFont: BitmapFont = new BitmapFont(); var url=urls[i]; bitmapFont.loadFont(url, new Handler(this, this.onFontLoaded, [bitm...

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