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

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

801. Image设置skin的Bug [ 56%]

...载完成后,回调设置皮肤资源找不到_bitmap /**      * @private      * 设置皮肤资源。      */     protected setSource(url: string, img: any = null): void {         if (url === this._skin && img) {             this.sour...

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

802. Event类中的target属性IDE返回值为什么和文档不一样 [ 56%]

...容相关的链接 提交 1 个回复 Monica - 知识达人 赞同来自: private function test(e:Event):void{ e.target//是这样获取的 } 2017-10-16 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 lbjryy 相关问题 Layaair IDE的帧...

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

803. 2.0 的list问题 [ 56%]

2.0 的list问题 /** 初始化坑位 */ private initCellList(): void { this.cellList.itemRender = CellItem; this.cellList.vScrollBarSkin = ""; this.cellList.repeatX = BattleMgr.Ins.Model.crosCel; this.cellList.repeatY = BattleMgr.Ins.Model.maxCell / BattleMgr.Ins.Model.crosCel; this.cellList.array...

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

804. 接听电话后,播放音效无反应,播放音乐可以 [ 56%]

...: iphone 6s    qq中打开  webgl   问题已解决 直接贴代码了 private static function _stageOnFocus():void { _isActive = true; Laya.stage.off(Event.MOUSE_DOWN, null, _stageOnFocus); if (_blurPaused) { if (_tMusic) { playMusic(_tMusic, _musicLoops, _musicCompleteHandler, _musicPosition);...

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

805. TimeLine运行的小问题 [ 56%]

....7},200) .addLabel("C",0).to(sp,{scaleY:1},200); timeLine.play(0,false); } private function onLabel(text:String):void { trace(text); }应该是你的代码有问题,以上是我的测试例子,没有出现重复执行的问题,请测试。 注意,label事件的触发是在动画运行之后...

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

806. TypeScript语法问题,泛型 [ 56%]

...?下面是C#代码 public class Class1<T> where T : class, new() { private static T instance; public static T GetInstence() { if (null == instance) { instance = new T(); } return instance; } } 这样我在其他地方,继承Class1,就可以直接类名.GetInstence()获取该类的实例 ...

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

807. 缓动-逐字缓动 [ 55%]

...n.to(letterText, { y : endY }, 1000, Ease.elasticOut, null, i * 1000); } } private function createLetter(char:String):Text { var letter:Text = new Text(); letter.text = char; letter.color = "#FFFFFF"; letter.font = "Impact"; letter.fontSize = 110; Laya.stage.addChild(letter); return letter; } } }

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

808. 绘制平明问题 [ 55%]

...请: 与内容相关的链接 提交 3 个回复 wudi199553 赞同来自: private drawPentagram(): void {             var canvas: Sprite = new Sprite();             Laya.stage.addChild(canvas);             var path: Array<number> = [];             path.push(0, -130);  ...

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

809. hBox使用问题 [ 55%]

...ox使用问题 Laya.loader.load(picAy,Handler.create(this, onAssetLoaded)) private function onAssetLoaded():void { for(var i:int=0;i<picAy.length;i++) { var texture:Texture= Loader.getRes(picAy); var ape:Sprite = new Sprite; //ape.x=i*(stageWidth/4) //Tween.to(ape, { x : i*(stageWidth/4) },1500,E...

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

810. 进度条滚动无效【已解决】 [ 55%]

...就是不滚动,一直在0的位置 Laya.timer.frameLoop(1,this,onLoop); private function onLoop():void { progress++; //最高100%进度 if(progress>=100) { progress=100; this.tips.text="游戏加载完毕,即将进入游戏..." this.panel.visible=false; this.gobtn.visible=true; }else { this....

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