大约有 1,536 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0060 秒)
...把此信息截图给研发商 Uncaught TypeError: Cannot read property 'addChild' of null TypeError: Cannot read property 'addChild' of null at Function.ViewRenderManager.show (file:///E:/LayaAirIDE_1.7.10_beta/resources/app/out/vs/layaEditor/h5/layabuilder.max.js:15196:27) at ParticleScene.__proto...
来源: Laya_社区 发布时间: 20170908
...3D = Laya.Sprite3D.load("res/Coin/layaScene.lh") as Laya.Sprite3D; scene.addChild(temp); temp.on(Laya.Event.HIERARCHY_LOADED,this,()=> { this.model = Laya.MeshSprite3D.instantiate(temp,scene) as Laya.MeshSprite3D; if(index == 0) { this.model.transform.position = new Laya.Vector3(0.8...
来源: Laya_社区 发布时间: 20180827
... = new Laya.Sprite(); sp.graphics.drawTexture(texture,300,300); Laya.stage.addChild(sp); var ani: Laya.Animation = new Laya.Animation(); ani.loadAtlas("res/start.json"); // 加载图集动画 ani.interval = 30; // 设置播放间隔(单位:毫秒) ani.index = 1; // 当前播放索引 ani.play(...
来源: Laya_社区 发布时间: 20170329
...as Laya.Sprite3D; var animCtl = actor.getComponent(Laya.Animator); scene.addChild(actor); actor.addChild(weapon); animCtl.linkSprite3DToAvatarNode("RHand", weapon); animCtl.play("Idle01"); 代码基本功能就是往人物的右手挂载一个武器,Laya1.0版本的时候都是可以正常使...
来源: Laya_社区 发布时间: 20191011
... = Laya.HTMLIframeElement; var iHtml = new HTMLIframeElement(); Laya.stage.addChild(iHtml); iHtml.href="http://www.baidu.com"; 一启动运行就现以下错误 Error processing "variables": TypeError: Cannot read property 'length' of undefined at trimProperty (d:\Program Files\LayaIDE\resources\...
来源: Laya_社区 发布时间: 20171203
...eenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show(); var scene = Laya.stage.addChild(new Laya.Scene()); scene.shadingMode = Laya.BaseScene.VERTEX_SHADING; var camera = new Laya.Camera(0,0.1,100); scene.addChild(camera); camera.clearFlag = Laya.BaseCamera.CLEARFLAG_SKY; //可采用预加载资源方...
来源: Laya_社区 发布时间: 20170316
...l.getItemByClass("wheel", wheel); p.pos(i*90+100,200); p.init(); roleLayer.addChild(p) } /////////////wheelas.as public function wheel(){ this.graphics.drawCircle(0,0,40,"#fff"); _wheel= new Animation(); _wheel.loadAnimation("wheeling.ani"); } public function init():void{ t...
来源: Laya_社区 发布时间: 20190312
...private function showFoods():void{ foodSprite = new Sprite(); Laya.stage.addChild(foodSprite); //初始化当前菜品下标 this.index = 0; //数据数组 foodArray = ; foodArray.push(new Food("菜品1", "1", 0)); foodArray.push(new Food("菜品2", "2", 1)); foodArray.push(new Food("菜品3", "3", ...
来源: Laya_社区 发布时间: 20180407
...ader.ATLAS); function onLoaded(){ Laya.sg_sign = new sg_sign(); Laya.stage.addChild(Laya.sg_sign); } function onWxSign1(){ Laya.sg_sign.removeSelf(); Laya.Pool.recover("sg_sign",Laya.sg_sign); Laya.sg_index = new sg_index(); Laya.stage.addChild(Laya.sg_index); } 这样写可以吗 还有ui和代码...
来源: Laya_社区 发布时间: 20170725
...r.create(null, onLoaded2)); } function onLoaded2() { Laya.stage.addChild(new TestUI()); }当用这种方式分步加载资源的时候 就会出现我说的情况 ios下会 安卓是正常, 第一步的资源会加载成功,第二部分的资源就加载失败 2018-07-31 0 0 分享 ...
来源: Laya_社区 发布时间: 20180730