大约有 1,536 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0055 秒)
... 16:36 我unity场景中设置,代码中 this._PlayerLight = this._scene.addChild(new Laya.DirectionLight()) as Laya.DirectionLight; this._PlayerLight.color = new Laya.Vector3(0.7, 0.6, 0.6); this._PlayerLight.transform.worldMatrix.setForward(new Laya.Vector3(1, -1, 0)); this._PlayerLight.layer = ...
来源: Laya_社区 发布时间: 20190709
...aya.Sprite = new Laya.Sprite(); Laya.stage.addChild(sprite); sprite.graphics.drawTexture(rankTexture,0,0,rankTexture.width,rankTexture.height); // console.log("再次往开放域发请求"); ...
来源: Laya_社区 发布时间: 20180529
...ani created:" + ani); this._hero = ani; this.addChild(this._hero); this._hero.pos(300, 400); this._hero.scale(0.3, 0.3); this._hero.on(Laya.Event.STOPPED, this, this._onPlayed); this._play(); ...
来源: Laya_社区 发布时间: 20160822
...我代码导致还是就是有这问题呢 this.yzsAni.play(); Laya.stage.addChild(this.yzsAni); 连续调用不同动画的play,经常会出现动画不动的问题是我代码导致还是就是有这问题呢 2017-11-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...
来源: Laya_社区 发布时间: 20171103
...热区(hitState)四个状态。 。也因此SimpleButton允许通过addChild方法将按钮图片资源等其他显示对象添加到其中显示。 2、由于手机端是没有鼠标的,所以layaFlash下不支持光标! 2017-02-22 0 3 分享 微博 QZONE 微信 为什么被折叠? 0 个...
来源: Laya_社区 发布时间: 20170222
...t.color = "#ffffff"; //将文本内容添加到舞台 Laya.stage.addChild(txt); } } new LayaAir3D();
来源: Laya_社区 发布时间: 20180908
...);//这个对象内部有一个属性为testNum; this.addChild(_bottomBtn); trace("测试1 = " + _bottomBtn.testNum + "-" + _bottomBtn);// 测试1 = 1-[object Object] this.removeChildren(); trace("测试2 = " + _bott...
来源: Laya_社区 发布时间: 20170328
... this.vmask.graphics.drawPie(0, 0, 20, -90, 270, "#000000"); this.progress.addChild(this.progressvalue); this.progressvalue.mask = this.vmask; this.changevalue = function(value) { this.targetvalue = value; target = parseInt(360 * value - 90); this.vmask.graphics.clear(); if(target == -90){ //th...
来源: Laya_社区 发布时间: 20180725
...e3d/LayaScene_SampleScene/Conventional/role.lh"); Laya.stage.addChild(rolde); 模型要加在3d场景上 不要加在stage上 2020-01-13 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 大奥 相关问题 2.0一不小心删...
来源: Laya_社区 发布时间: 20200113
... ball=new Sprite(); ball.graphics.drawCircle(0,0,50,"#FF00FF"); Laya.stage.addChild(ball); ball.x=275; ball.y=200; Laya.timer.frameLoop(1,this,onFrame); } private function onFrame():void { // TODO Auto Generated method stub if (ball.x>540||ball.x<10) { xflag=! xflag; } if (xflag) { ball.x+=v; ...
来源: Laya_社区 发布时间: 20160424