大约有 366 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0053 秒)
...的动画进行单独处理?还是不允许把动画放进预制体? Laya.loader.load("prefab/gk2v1.json",Laya.Handler.create(this,function(pref:Laya.Prefab){ var gkpref:Laya.Prefab = new Laya.Prefab(); gkpref.json = pref; var OBJ = Laya.Pool.getItemByCreateFun("gk2v1",gkpref.create,gkpref); thi...
来源: Laya_社区 发布时间: 20201022
ReferenceError: Loading_fly is not defined LAYA AIR 调试会报界面错 ReferenceError: Loading_fly is not defined chrome 正常运行 查看之后发现是 diango 上增加动画的问题 Laya.Animation.createFrames(loading_array, 'loading') 附件 : --> 2017-11-07 添加评论 免费...
来源: Laya_社区 发布时间: 20171107
...用Loader加载完atlas,然后使用animation播放问题 this._load = new Laya.Loader() this._load.on(Laya.Event.ERROR, this, this.onError); this._load.on(Laya.Event.COMPLETE, this, this.loadComplete); this._load.load(this._data.url, Laya.Loader.ATLAS, true); 加载完成后 this._ani = new Animati...
来源: Laya_社区 发布时间: 20171212
关于设置动画轴心点问题 // 动画 Laya.Animation.createFrames(["map/Characters/Blue_JumpLeft_Smile.png"], ActionType.JUMP_LEFT); // 创建动画 this.animation = new Laya.Animation(); this.animation.interval = 150; this.animation.play(0, true, ActionType.MOVE_RIGHT); this.addChild(this.an...
来源: Laya_社区 发布时间: 20170119
ani时间轴动画问题 Laya.loader.load("res/atlas/move.json", Laya.Handler.create(this, onLoaded)); function onLoaded() { //创建一个Animation实例 var tl = new Laya.Animation(); //加载动画文件 tl.loadAnimation("TimeLine.ani"); //添加到舞台 ...
来源: Laya_社区 发布时间: 20171012
...bug 我有一个a.ani文件,这个a.ani需要用到b.json图集。 先用Laya.loader.load加载b.json图集,然后在加载完成的处理函数里面new一个Animation,将a.ani显示出来 过一会移除a.ani,并且用Laya.loader.clearRes删除b图集 又过一会,重新用Laya.loa...
来源: Laya_社区 发布时间: 20180227
...。 切换界面使用了三种方式: a、Laya.stage.removeChild b、Loading.destroy c、loading.visible = false; 5、出现错误现象: Sprite无法创建,console给出的错误提示为: Uncaught TypeError: ...
来源: Laya_社区 发布时间: 20171015
Animation创建时无法获取高度 var roleAni = new Laya.Animation(); roleAni.loadImages( this.aniUrls( v1, v2, tip, frames ) ).play(); roleAni.pos(x,y); this.root.addChild( roleAni ); roleAni.pivotY = roleAni.getBounds().height; console.log("---> ", roleAni.getBounds() ); 打印为 ---> ...
来源: Laya_社区 发布时间: 20170824
...poorpath02="Comp/yard_swimpool02.png"; export default class Yard extends Laya.Sprite { private swimpoolani:Laya.Animation; constructor() { super(); this.swimpoolani=new Laya.Animation(); //this.init(); this.swimpoolani.loadAtlas("./res/atlas/Comp.atlas",Laya.Handler.create(this,this.onLoaded)); ...
来源: Laya_社区 发布时间: 20190805
...态加载lm和lsani并播放动画? 下面的代码实现不了: var layaScene:Sprite3D = scene.addChild(Sprite3D.load("res/LayaScene/layaScene.lh")) as Sprite3D; layaScene.once(Event.HIERARCHY_LOADED, this, function():void{ var meshSprite:Sprite3D=layaScene.getChildAt(0) as Sp...
来源: Laya_社区 发布时间: 20180208