• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 1,536 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0055 秒)

1051. laya的各种light支持culling mask吗? [ 55%]

... 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

1052. 微信小游戏利用开放域好友关系链做排行榜 [ 55%]

...aya.Sprite = new Laya.Sprite();                 Laya.stage.addChild(sprite);                 sprite.graphics.drawTexture(rankTexture,0,0,rankTexture.width,rankTexture.height);                  // console.log("再次往开放域发请求");      ...

来源: Laya_社区 发布时间: 20180529

1053. 龙骨动画残影 [ 55%]

...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

1054. 经常会出现动画不动的问题是我代码导致还是就是有这问题[ 55%]

...我代码导致还是就是有这问题呢 this.yzsAni.play(); Laya.stage.addChild(this.yzsAni);   连续调用不同动画的play,经常会出现动画不动的问题是我代码导致还是就是有这问题呢   2017-11-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...

来源: Laya_社区 发布时间: 20171103

1055. SimpleButton不显示、Sprite的 buttonMode 无效 [ 55%]

...热区(hitState)四个状态。   。也因此SimpleButton允许通过addChild方法将按钮图片资源等其他显示对象添加到其中显示。 2、由于手机端是没有鼠标的,所以layaFlash下不支持光标! 2017-02-22 0 3 分享 微博 QZONE 微信 为什么被折叠? 0 个...

来源: Laya_社区 发布时间: 20170222

1056. 3D项目Label组件增加最少15M内存 [ 55%]

...t.color = "#ffffff"; //将文本内容添加到舞台 Laya.stage.addChild(txt); } } new LayaAir3D();

来源: Laya_社区 发布时间: 20180908

1057. destroyChildren 销毁对象后为什么依旧能取得内部属性 removeChildren destroyChildren的区别 [ 55%]

...);//这个对象内部有一个属性为testNum;             this.addChild(_bottomBtn);             trace("测试1 = " + _bottomBtn.testNum + "-" + _bottomBtn);// 测试1 = 1-[object Object]             this.removeChildren();             trace("测试2 = " + _bott...

来源: Laya_社区 发布时间: 20170328

1058. 求绘制遮罩会引起黑屏的解决办法 [ 55%]

... 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

1059. 还是同样系统BUG?场景ls可以加载,lh资源加载错误? [ 55%]

...e3d/LayaScene_SampleScene/Conventional/role.lh");        Laya.stage.addChild(rolde); 模型要加在3d场景上 不要加在stage上 2020-01-13 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 大奥 相关问题 2.0一不小心删...

来源: Laya_社区 发布时间: 20200113

1060. 分享:LayaAir实现曲线运动 [ 55%]

... 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