大约有 1,536 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0055 秒)
... swordman.play(0, true); Laya.stage.addChild(swordman); swordman.pos(width / 2, height / 2); Laya.timer.frameOnce(100, this, unload); } private function unload() : void { ...
来源: Laya_社区 发布时间: 20160902
... but.labelSize = 20; LayaSample.choseAre.addChild(but); } 在这里需要给按钮添加皮肤的时候提示 lose skin image/qfbutton.png;不要问我图片路径对不对,就那么几个字母,我都对了好几遍了;路径没错,...
来源: Laya_社区 发布时间: 20170320
...ray, Handler.create(null, onLoaded2)); } function onLoaded2() { Laya.stage.addChild(new TestUI()); }当用这种方式分步加载资源的时候 就会出现我说的情况 ios下会 安卓是正常, 第一步的资源会加载成功,第二部分的资源就加载失败 2018-08-03 添加评论 ...
来源: Laya_社区 发布时间: 20180803
...下图一。let cube = new MeshSprite3D(PrimitiveMesh.createBox()); scene.addChild(cube); let pos = new Vector3(); let screenPos = new Vector3(); Laya.timer.frameLoop(1, this, ()=>{ camera.orthographic = true; screenPos.setValue(camera.clientWidth / 2, camera.clientHeight / 2, 0.1); //converScree...
来源: Laya_社区 发布时间: 20220525
... this.graphics.drawRect(0, 0, 90, 90, '#aabbcc', '#bbccdd', 1); Laya.stage.addChild(this); var lastTimestamp = 0; var count = 0; var totale = 0; Laya.timer.frameLoop(1, this, function test() { var deltaTime = new Date().getTime() - lastTimestamp; lastTimestamp = new Date().getTime(); count++; totale...
来源: Laya_社区 发布时间: 20170920
....centerX = 0; button.centerY = 0; Laya.stage.addChild(button); button.on(laya.events.Event.CLICK,this,function () { let photo = laya.utils.Browser.getElementById("photo"); photo.click(); }); ...
来源: Laya_社区 发布时间: 20161114
...race( Laya.loader.getRes(url) ); } private function hh():void { Laya.stage.addChild(new Image("MORNUI_Z_Gongneng/clip_xue_quan.png")); Laya.timer.once(1000,1,ddd); } private function ddd():void { trace("aaa1",Laya.loader.getRes(url)); Laya.stage.removeChildren(); Laya.loader.clearRes(url); trace("aa...
来源: Laya_社区 发布时间: 20171206
...; mc.load("output/AAA.swf"); mc.on(Event.LOADED,this,onLoaded); Laya.stage.addChild(mc); } private function onLoaded():void { mc.addLabel("label01",19); mc.addLabel("label02",39); mc.addLabel("label03",59); mc.on(Event.LABEL,this,onLabel);//运行到对应的帧数,会触发对应的标签 } priva...
来源: Laya_社区 发布时间: 20170705
...ene中(一定要加入到场景) Scene3DManager.getInstance().nowScene.addChild( box ); this._ani.linkSprite3DToAvatarNode("RHand",box); linkSprite3DToAvatarNode 这个借口会报错,, throw("Animator:sprite3D must belong to this Animator"); 走到这里了,, 模型资源在附件里...
来源: Laya_社区 发布时间: 20181010
...static GameStart:GameStart; GameMain.GameStart=new GameStart(); Laya.stage.addChild(GameMain.GameStart); 报错:file: 'file:///e%3A/LAYABOX/CaiCi/src/GameMain.ts' severity: '错误' message: 'Argument of type 'GameStart' is not assignable to parameter of type 'Node'. Property '_childs' is missing ...
来源: Laya_社区 发布时间: 20170826