大约有 1,273 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0069 秒)
Laya_社区(723) Laya2.0_文档(155) Laya3.0_api(108) Laya2.0_示例(81) Laya_示例(70) Laya2.0_api(58) laya_api(54) Laya3.0_文档(24)
...听到的。第二问题,额~~应该是 loadAnimation(url:String, loaded:Handler = null, atlas:String = null):Animation 方法的问题。在进入游戏的时候就加载了动画需要的图集,不过json文件的。按照示例的加载动画,这个时候loadAnimation();我应该传入url...
来源: Laya_社区 发布时间: 20180204
...画 Laya.loader.load(["res/fish_1/stand.atlas","res/fish_1/attack.atlas"], Handler.create(this, this.onAnimAtlasLoaded)); } } private function onAnimAtlasLoaded():void { testAnim1 = new Animation(); testAnim1.loadAnimation("res/fish_1/fish_1.ani"); Laya.stage.addChild(testAnim1); testAnim1.play(0,tr...
来源: Laya_社区 发布时间: 20180424
... Laya.Sprite3D.load("res/prefabs/Conventional/SampleScene.lh", Laya.Handler.create(null, function(sp) { var layaMonkey2 = scene.addChild(sp); layaMonkey2.transform.localScale = new Laya.Vector3(4, 4, 4); ...
来源: Laya_社区 发布时间: 20211009
...源成功后,执行onLoaded回调方法 Laya.loader.load(this.skin,Laya.Handler.create(this,this.onLoaded)); } private onLoaded():void{ //创建一个Button实例 var btn:Laya.Button = new Laya.Button(this.skin); //将Button添加到舞台上 Laya.stage.addChild(btn); //设置Button相关属性 bt...
来源: Laya2.0_文档 发布时间: 20210714
...单元格的位置 this._list.tweenTo(this._list.page, 500, isFresh ? Laya.Handler.create(this, this.refresh) : null);核心就这句,this._list.page在滑动的距离达到某个值时,就会调用,翻到下一页,左右翻页按钮去调用没问题,位置都是正确的,只有在按...
来源: Laya_社区 发布时间: 20180911
自定义Laya.Tab的item,tab注册的selectHandler无法触发到回调函数 我需要自定义tab里面的item项,在编辑器自定义了tabItem.scene。 在另一个View里面创建3个这个tabItem对象,命名item0,item1,item2,选中转换为容器Tab命名为myTab。 但是在该View...
来源: Laya_社区 发布时间: 20190514
...e { import laya.display.Stage; import laya.ui.TextInput; import laya.utils.Handler; public class TextInput_Example { public function TextInput_Example() { Laya.init(640, 800);//设置游戏画布宽高、渲染模式。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load...
来源: Laya3.0_api 发布时间: 20231115
...url: string | ILoadURL | (string | Readonly<ILoadURL>)[], complete?: Handler, progress?: Handler, type?: string, priority?: number, cache?: boolean, group?: string, ignoreCache?: boolean, useWorkerLoader?: boolean): Promise<any> Defined in laya/net/Loader.ts:204 加载资源。 Parameter...
来源: Laya3.0_api 发布时间: 20231115
...Message(onGetMessage); Laya.loader.load(urlconfig,new Handler( null,onLoaded),null); function onLoaded():void { trace("urlconfigurlconfigurlconfigurlconfigurlconfigurlconfigurlconfigurlconfigurlconfigv"); ...
来源: Laya_社区 发布时间: 20180525
... TextArea 实例。 package { import laya.ui.TextArea; import laya.utils.Handler; public class TextArea_Example { public function TextArea_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/inpu...
来源: Laya3.0_api 发布时间: 20231115