大约有 213 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0035 秒)
...持换装 * @return */ public function buildArmature(aniMode:int = 0):Skeleton { return new Skeleton(this, aniMode); } 看这个, 第二个翅膀用1 2018-12-06 0 0 分享 微博 QZONE 微信 为什么被折...
来源: Laya_社区 发布时间: 20181205
... * @param speed 移动速度 */ public setCamera(z: number, speed?: number) { if (speed === void 0) { speed = 0.3; } var thiz = this; //创建一个Tween的属性对像 ...
来源: Laya_社区 发布时间: 20180726
...StageProperties | Methods | Events | Constants Packagelaya.displayClasspublic class StageInheritanceStage Sprite Node EventDispatcher Object Stage 是舞台类,显示列表的根节点,所有显示对象都在舞台上显示。通过 Laya.stage 单例访问。 Stage提供几种适配模式...
来源: Laya2.0_api 发布时间: 20190513
...试效果不一致(sprite,child) Laya.timer.frameLoop(1,this,this.run()); public run():void{ var childs:Array<Laya.Sprite> = this._childs; childs.sort(this.sortHandler); } public sortHandler(left:Laya.Sprite,right:Laya.Sprite):number{ return left.y-right.y; } 这样实现 当...
来源: Laya_社区 发布时间: 20180228
...{ import laya.net.Loader; import laya.utils.Handler; import view.TestView; public class LayaUISample { private var dd:*; public function LayaUISample() { //初始化引擎 Laya.init(600, 400); //判断是否在加速器端 __JS__("if(window.conch)") { //获取loadingview的实例 dd=__JS__("window.l...
来源: Laya_社区 发布时间: 20160918
... /** * - 骨骼挂点 * @param nodeName * @param root * @param Sprite3D */ public static link2Node(nodeName: string, root: Laya.Sprite3D, Sprite3D: Laya.Sprite3D) { //递归调用 let index = 0; let child: Laya.Sprite3D = null; while (true) { child = root.getChildAt(index) as Laya.Sprite3D; if (!chi...
来源: Laya_社区 发布时间: 20190918
...动: 2018-04-16 14:39 浏览: 1190 关注: 2 人 wq • 2018-04-16 15:25 public function LayaUISample() { //初始化引擎 Laya.init(600, 400); //判断是否在加速器端 __JS__("if(window.conch)") { //获取loadingview的实例 dd=__JS__("window.loadingView"); 通过loading...
来源: Laya_社区 发布时间: 20180416
... 2017-02-22 17:30 Laya.timer.frameLoop(1,this,Handlre.create(this,onLoop)) public funciton onLoop():void { if(ani.index==2) { trace("ani已经播放到第二帧了"); } }
来源: Laya_社区 发布时间: 20161214
...aderDataFormat; import flash.net.URLRequest; import flash.utils.ByteArray; public class UrlImage extends Sprite { private var urlLoader:URLLoader; private var l:Loader; public function UrlImage() { super(); if(stage) { init(); } else { this.addEventListener(Event.ADDED_TO_STAGE,init); } } private fu...
来源: Laya_社区 发布时间: 20151228
...听太多 需要分离 监听和执行 /** * 基础信息按钮监听 */ public AffirmButton1Click(event: Laya.Event) { } 但是实际运行的情况下就会报错 Explain.ts:11 TypeError: Cannot read property 'AllTitleButtonClick' of undefined Explain.ts:31 at Explain.onAwake (file:///E:/NewLaya...
来源: Laya_社区 发布时间: 20190410