大约有 2,337 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0061 秒)
Laya_社区(1778) Laya3.0_api(153) laya_api(104) Laya2.0_api(96) Laya2.0_文档(77) Laya_示例(52) Laya2.0_示例(48) Laya3.0_文档(29)
...换装、切换动作 引擎中使用骨骼动画无论是Spine还是DragonBone其实用法都是一样的,因为在转换过程中转换工具将两种动画都转成了引擎可以使用的相同的格式。本节将进一步介绍骨骼动画的用法。 **一、骨骼动画模板** 要更好...
来源: Laya2.0_文档 发布时间: 20210715
...,才能恢复原样。 UI界面的继承类 var StartResource = function StartResource(){ StartResource.super(this); //LOGO 图标 访问地址 var href='https://list.tmall.com/search_product.htm?q=%BB%A8%D3%A1%D0%B6%D7%B1%CB%AE&type=p&spm=a220m.1000858.a2227oh.d100&xl=%BB%A8%D3%A1_...
来源: Laya_社区 发布时间: 20180810
...en; public class testVH { protected var _tip:Sprite; public function testVH() { IEventDispatcher; Config.isAlpha = true; Config.isAntialias = true; Laya.init(0, 0,true); Laya.stage.bgColor = "#000000"; ChangeSize(); Laya.timer.once(1000,this,function start():void{ Laya.stage.on(Event.RESIZE...
来源: Laya_社区 发布时间: 20190520
...的页面传值? 2016-09-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: jason18380447822 、光大帅 向Open页面传值是需要开发者来控制的,你可以通过自定义...
来源: Laya_社区 发布时间: 20160908
...小问题。监听不到动画结束。。。 var anifish2 = fish2.addComponent(Laya.SkinAnimations); anifish2.templet = Laya.AnimationTemplet.load("fish/haitun/haitun.lsani"); anifish2.player.playByFrame(0,1.0,2147483647,0,60,30);//游动 // anifish2.player.playByFrame(0,1.0,2147483647,60,145,30);/...
来源: Laya_社区 发布时间: 20170927
...TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Event = Laya.Event; var Browser = Laya.Browser; var WebGL = Laya.WebGL; var button1, button2; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(Brow...
来源: Laya_示例 发布时间: 20241118
dialog.removeSelf is not a function (一个界面)this.ui = new ui.common.PlaneGameInfoDialogUI;。。。(关闭按钮)this.ui.ibtn_close.on(Laya.Event.CLICK,this,this.ui.close);。。。(点击之后)Uncaught TypeError: dialog.removeSelf is not a function....求助大神谢谢啦~~~ 20...
来源: Laya_社区 发布时间: 20170418
关于button的click监听 let btn:Laya.Button=new Laya.Button(); btn.label="AAAAAA"; btn.pos(200,200); Laya.stage.addChild(btn); btn.on(Laya.Event.CLICK,this,()=>{console.log("click button");}); 请问 这样监听不到button的点击事件吗?如果我创建一个ui.view a a.on 也...
来源: Laya_社区 发布时间: 20171128
...不生效 private init():void { //添加点击事件处理 this.v_btn_boy.on(Laya.Event.CLICK, this, this.onClickBtnBoy); this.v_btn_friend.on(Laya.Event.CLICK, this, this.onClickBtnFriend); this.v_btn_shop.on(Laya.Event.CLICK, this, this.onClickBtnShop); console.log("init main scene"); } //点击...
来源: Laya_社区 发布时间: 20180312
...w Laya.HttpRequest(); xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.on(Event.PROGRESS,this,processHandler); xhr.send("https://www.baidu.com","","get","text"); function processHandler(data){ console.log(dat...
来源: Laya_社区 发布时间: 20180827