大约有 2,728 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0062 秒)
Laya_社区(1131) Laya3.0_api(543) Laya2.0_api(297) laya_api(221) Laya2.0_文档(201) Laya_示例(139) Laya2.0_示例(109) Laya3.0_文档(87)
...ePath, Handler.create(this, this.setup)); this.setup(); } private setup(): void { this.createApe(); this.showDragRegion(); } private createApe(): void { this.ape = new Sprite(); //this.ape.loadImage(this.ApePath); Laya.stage.addChild(this.ape); //这里是我注释掉的代码 //var texture: Texture...
来源: Laya_社区 发布时间: 20171106
...olor = "#232628"; Laya.Stat.show(); this.startFun(); } private startFun(): void { //创建动画模板 this.templet = Laya.SpineTempletBinary(); this.templet.loadAni(this.aniPath); this.templet.on(Laya.Event.COMPLETE, this, this.parseComplete); this.templet.on(Laya.Event.ERROR, this, this.onError) }...
来源: Laya2.0_文档 发布时间: 20210715
...es/TerrainScene/XunLongShi.ls",Handler.create(null,function(scene:Scene3D):void { //加载完成获取到了Scene3d Laya.stage.addChild(scene); //获取摄像机 var camera:Camera = scene.getChildByName("Main Camera") as Camera; //清除摄像机的标记 camera.clearFlag = BaseCamera.CLEARFLAG_SKY;...
来源: Laya2.0_文档 发布时间: 20210715
...ERROR, this, this.errorHandler); } private openHandler(event: any = null): void { //正确建立连接; this.byte.writeByte(1);//写入一个字节 this.byte.writeInt16(20);//写入一个int16的数据 this.byte.writeFloat32(20.5);//写入一个32位的浮点数据 this.byte.writeUTFString("hello"...
来源: Laya_社区 发布时间: 20171129
...} /***加载资源完成***/ private function onSkinLoadComplete(e:*=null):void { //创建垂直滚动条 createVScroller(); } /***创建垂直滚动条***/ private function createVScroller():void { //实例化水平滚动条 vScrollBar= new VScrollBar(); //加载皮肤资源(其他资源根据规...
来源: Laya2.0_文档 发布时间: 20210715
...} /***加载资源完成***/ private function onSkinLoadComplete(e:*=null):void { //创建水平滚动条 createHScroller(); } /***创建水平滚动条***/ private function createHScroller():void { //实例化垂直滚动条 hScrollBar= new HScrollBar(); //加载皮肤资源(其他资源根据规...
来源: Laya2.0_文档 发布时间: 20210714
...r.load("res/bg2.png", Handler.create(this, this.setup)); } private setup():void { var bg:Sprite = new Sprite(); bg.loadImage("res/bg2.png"); Laya.stage.addChild(bg); this.bg2 = new Sprite(); this.bg2.loadImage("res/bg2.png"); Laya.stage.addChild(this.bg2); this.bg2.scale(3, 3); //创建mask this.mas...
来源: Laya2.0_示例 发布时间: 20241120
...供的关于换装的功能有: 其中:showSkinByIndex(skinIndex:int):void 根据spine中的皮肤索引一键换装 showSkinByName(name:String):void 根据在spine中的皮肤起的名字一键换装 showSlotSkinByIndex(slotName:String, index:int):void 根据spine中的单个插槽里的纹...
来源: Laya_社区 发布时间: 20161203
...lic function ArgsDemo() { funArgs(arr); } public function funArgs(...args):void { var arr2:Array = args.slice(); //(翻译成JS后会报错提示:Uncaught TypeError: undefined is not a function) trace(arr2.toString()); }兼容H5写法:public function funArgs(...args:Array):void{ var arr2:Array = arg...
来源: Laya_社区 发布时间: 20151202
...本加载正常 Mac下的AS3代码如下: private function init():void { var assetArr:Array=[ {url:"res/sound/music_gameplay.mp3", type:Loader.SOUND}, {url:"res/sound/button.mp3", type:Loader.SOUND}, {url:"res/sound/mo...
来源: Laya_社区 发布时间: 20181112