大约有 1,451 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0052 秒)
...简单的教程 先自己全局 安装 npm 然后安装 gulp、tbrowserify、vinyl-source-stream、ttsify 我的npm路径是 :"/usr/local/lib/node_modules/"然后 我们 在 .laya 文件夹下 找到 compile.js 然我们自己在这个目录下 新建一个 文件 名字是 ”gulpfile.js“ ...
来源: Laya_社区 发布时间: 20181221
...) 改为 "owner" in tChild,set中的log被输出。 引擎1.7.5beta. // if (tChild.hasOwnProperty("owner")) { // tChild["owner"] = comp; // } if ("owner" in tChild) { tChild["owner"] = comp; } 附件 : --> myLaya.rar 2017-06-01 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20170601
...function onMouseDown(e:Event = null):void { var touches:Array = e.touches; if (touches) { moveX = touches[0].stageX stage.on(Event.MOUSE_MOVE, this, onMouseMove) } } private function onMouseMove(e:Event= null):void { var touches:Array = e.touches; if (touches) { xx = moveX - touches[0].stageX; hero....
来源: Laya_社区 发布时间: 20210203
...el:Laya.Component) { console.log("GetViewHeight:"+panel.height); if(panel.height>0) { return panel.height } if(!panel.parent) { return WINSIZE.height } let parent=panel.parent as Laya.Component; return GetViewHeight(parent)-panel.top-panel.bottom; }
来源: Laya_社区 发布时间: 20180814
...this.play(); } play() { mCurrIndex++; let aniNum = mArmature.getAnimNum(); if (mCurrIndex >= aniNum) { mCurrIndex = 0; } mArmature.play(mCurrIndex, false); } } new Skeleton_MultiTexture();module laya { import Skeleton = Laya.Skeleton; import Templet = Laya.Templet; import Event = Laya.Event; import ...
来源: Laya2.0_示例 发布时间: 20241120
... required bytes sex = 3; //角色性别 // } if(Msg== null){ Msg = ProtoManager.Instance.getProtoObj(protoFileName).lookup(msgName); } trace("protoFileName=="+protoFileName+" msgName=="+msgNa...
来源: Laya_社区 发布时间: 20180314
...邀请: 与内容相关的链接 提交 2 个回复 anghuo 赞同来自: if (cb.name == "musicset") { cb.selected ? SoundManager.setMusicVolume(0) : SoundManager.setMusicVolume(0.5); } else if (cb.name == "sou...
来源: Laya_社区 发布时间: 20170718
...TMLElement = div.getChildAt(i) as HTMLElement; if(tHTMLElement) { tTxt= tHTMLElement.text; if(tTxt) { ...
来源: Laya_社区 发布时间: 20170314
...体"); var newFont = Laya.loader.getRes("font/本墨竟圆-常规.ttf"); if(Laya.Browser.window.conch) { console.log("12313131313"); Laya.Browser.window.conch.setFontFaceFromBuffer("本墨竟圆-常规",newFont); } var txt = new Laya.Text(); txt.font = "本墨竟圆-常规"; txt.fontSize = "50"; txt...
来源: Laya_社区 发布时间: 20180718
...ent:Laya.Animator = node._childs[index].getComponentByType(Laya.Animator); if (element!=null) { return element; }else this.GetComponetInChild(node._childs[index],); } } 如何写成泛型方法呢???编译不通过 GetComponetInChild<T>(node:laya.display.Node):T { // var s:=typeof(Laya.An...
来源: Laya_社区 发布时间: 20180531