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

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

341. 父容器为何不响应鼠标事件 [ 81%]

父容器为何不响应鼠标事件 源码如下: let son:Laya.Sprite = new Laya.Sprite() let father:Laya.Sprite = new Laya.Sprite() son.loadImage("res/me.png",0,0,30,30) father.addChild(son)              Laya.stage.addChild(father) father.x = 100; father.y = 100; father.on(Laya.Even...

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

342. 如何获得box单独每个面的material [ 81%]

...xWidth, ConstValue.boxHeight); var box = this.parent.addChild(new Laya.MeshSprite3D(mesh)); box.transform.rotate(new Laya.Vector3(0, 45, 0), false, false); box.transform.position = new Laya.Vector3(ConstValue.boxOutScreen,ConstValue.boxHeight/2,0); var material = new Laya.StandardMaterial(); materia...

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

343. 3d模型预加载后二次调用报错 [ 81%]

...二次调用报错 使用Laya.loader.create 预加载,第一次用Laya.Sprite3D.load("xxx.lh").getChildAt(0) 可以创建,第二次再调用Laya.Sprite3D.load("xxx.lh").getChildAt(0) 创建就返回undefined了,help~ 2018-03-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...

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

344. 多重遮罩显示异常 [ 81%]

...者消失,测试代码如下 export default class ClipView extends Laya.Sprite { constructor() { super(); this.init(); } init() { let bg = new Laya.Sprite(); bg.graphics.drawRect(0, 0, 500, 500, '#aaa'); this.addChild(bg); this.panel = new Laya.Panel(); this.panel.width = 500; this.panel.height = ...

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

345. 每过一秒下降一个单位如何写 [ 81%]

...请: 与内容相关的链接 提交 1 个回复 Laya_XS 赞同来自: var sprite:Sprite = new Sprite; sprite.loadImage("图片路径"); Laya.timer.loop(1000,this,function(){ sprite.y += 1; }) 不知道是不是你想要的?   2016-11-26 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回...

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

346. 关于平行光渲染投影问题,求解惑 [ 81%]

....SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; let ape: Laya.Sprite = new Laya.Sprite(); Laya.stage.addChild(ape); ape.loadImage("../laya/assets/fish_bg.png"); //开启统计信息 Laya.Stat.show(); //添加3D场景 let scene: Laya.Scene = Laya.stage.addChild(new Laya.Scene()) as Laya....

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

347. 封装类的时候 怎么在类中表示自身? [ 81%]

...装类的时候 怎么在类中表示自身? class BackGround extends Laya.Sprite{ constructor() { super(); new init(); function init() { var bg1 = new Laya.Sprite(); var bg2 = new Laya.Sprite(); //背景图 // box.loadImage("../bin/background.png"); // Laya.stage.addChild(box); bg1.loadImage("../bi...

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

348. 如何做一个心形的进度条? [ 81%]

...何做一个心形的进度条?   类似这样的。。我有试过用sprite遮罩处理。。但是发现添加好的sprite遮罩在代码中无法移动它的坐标。。导致没有进度条效果? 附件 : --> 2017-11-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...

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

349. 版本号:2.0.2 beta, 在sound文件夹下音乐播放不了,放入到res文件夹下可播放 [ 81%]

.../GitHub/TS_Laya/TS_MyLaya/bin/sounds/hit.wav]   测试代码:   import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Text = Laya.Text; import Event = Laya.Event; import SoundManager = Laya.SoundManager; import Browser = Laya.Browser; import Handler = Laya.Handler; import WebGL = Laya.W...

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

350. 关于代码创建的遮罩会显示遮罩背景色的问题 [ 81%]

...IDE中创建的遮罩效果是正常的 onAwake(): void { let mask: Laya.Sprite = new Laya.Sprite(); Laya.stage.addChild(mask); mask.graphics.drawCircle(80,50,40,"#ffffff"); let sprite: Laya.Sprite = new Laya.Sprite(); Laya.stage.addChild(sprite); sprite.loadImage("myComp/loading_01.png"); //将遮...

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