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

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

181. 我用的HBox做的进度条为啥总是一闪一闪的。 [ 81%]

...pdateFont(value:number){ if(!this.hbox){ this.hbox = new Laya.HBox(); this.addChild(this.hbox); }else{ this.hbox.removeChildren(); } var cout:string = value.toString(); for(var i=0;i<cout.length;i++){ var clip: Laya.Clip = new Laya.Clip("loading/num0-9.png", 10, 1); clip.index = parseInt(cout.cha...

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

182. Sprite中的width,height和size(width,height)感觉没作用啊 [ 80%]

...bg.pos(0,0); bg.width = 100; bg.height = 100; bg.size(100,100); Laya.stage.addChild(bg); } 2016-07-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_XS 赞同来自: KXYLIGHT 因为Sprite在loadImage图片后...

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

183. 路径显示会添加DrawCall,每增加一条路径都会添加,有什么办法降DrawCall [ 80%]

... function TestView() { super(); _path.pivot(0,0); _path.pos(a.x,a.y); this.addChild(_path); _path.rotation = Math.atan2(b.y - a.y, b.x - a.x) / Math.PI * 180; _path2.rotation = Math.atan2(b.y - a.y+300, b.x - a.x) / Math.PI * 180; _path2.pos(a.x,a.y); this.addChild(_path2); var len:int = Math.floor(...

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

184. Unity5.5用LayaUnityPlugin 0.55导出模型 [ 80%]

...东西,laya中用这个方法获取不到材质 var rootSkinMesh = scene.addChild(new Laya.Sprite3D()); var skinMesh0 = rootSkinMesh.addChild(new Laya.MeshSprite3D(Laya.Mesh.load("3d/LayaScene_/Library/unity default resources-Cube.lm"))); var skinMesh1 = rootSkinMesh.addChild(new Laya.MeshSprite3D...

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

185. 关于环形进度条,进度不能重置问题 [ 80%]

...x = new Sprite(); this.box.cacheAs = "bitmap"; this.box.pos(0,0); this.say.addChild(this.box); this.draw = new Sprite(); this.box.addChild(this.draw); this.draw.graphics.drawPie(this.say.width/2, this.say.height/2, this.say.width/2+9,0,this.angle, "#ffffff"); this.circle = new Sprite(); this.circle....

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

186. Cannot read property 'rayCast' of undefined [ 80%]

...new Laya.Scene3D(); this.camera = new Laya.Camera(0, 0.1, 100); Laya.stage.addChild(this.scene); this.scene.addChild(this.camera); this.camera.transform.translate(new Laya.Vector3(0, 3.5, 1)); this.camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); //3.清除照相机颜色 this.came...

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

187. 正交摄像机裁剪问题 [ 80%]

...出现,而sp1离摄像机比sp更远缺不影响。 var camera = (scene.addChild(new Laya.Camera(0, 0.1, 550))); camera.transform.translate(new Laya.Vector3(250, 1, 0)); var rotation = new Laya.Quaternion; Laya.Quaternion.lookAt(camera.position, new Laya.Vector3(0, 0, 0), camera.up, rotation); cam...

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

188. 【简单跑酷--JS版】---Lv.4 添加玩家 [ 80%]

...Loaded"); //实例化RunGame // var runGame = new RunGame(); // Laya.stage.addChild(runGame); var sp = new laya.display.Sprite(); sp.x = 100; sp.y = 100; var texture = Laya.loader.getRes('player/chara_01.png'); sp.graphics.drawTexture(texture, 0, 0, 96, 96); Laya.stage.addChild(sp); console.log(text...

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

189. 请问ts版本下的Combobox组件,下拉框层级问题,是不打算改了吗? [ 80%]

...来以为是不是点击无效,后来调试了一下,发现其实已经addChild到舞台了,此处所有过程都是在Laya.ui.js 这个文件里自己完成的,并不是我手动 addChild   于是我感觉应该层级问题,但是我 并没有手动改过层级,也没有添加过代码...

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

190. 请问特效播放的速率可以自定义吗? [ 80%]

...ar.x = -50; par.y = 1280; par.autoPlay = false; MonsterHunt2.battleUILayer.addChild(shade); MonsterHunt2.battleUILayer.addChild(par); } 粒子系统的教程地址你可以参考一下 https://layaair.ldc.layabox.co ... %3DT3 Azure • 2018-04-11 17:09 我用的是3D的lh后缀的特效,教程我...

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