大约有 3,520 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0075 秒)
Laya_社区(2614) Laya3.0_api(265) Laya2.0_文档(227) Laya2.0_api(113) laya_api(98) Laya_示例(83) Laya3.0_文档(75) Laya2.0_示例(45)
...子,然后扔到了一个image父层级里,将image-gray属性设置为true,画布中粒子变灰效果正常,用代码预览粒子就不见了(不设true属性,粒子正常出现) 2017-11-28 0 0 分享 微博 QZONE 微信 Ace1024 赞同来自: mark, 粒子资源不要跟ui资源放...
来源: Laya_社区 发布时间: 20171127
...st上面加了一层Sprite,Sprite有设置size大小,mouseThrough设为true,为何还能穿过Sprite滑动List? 代码如下:package { import laya.display.Sprite; import laya.display.Stage; import laya.net.Loader; import laya.ui.Image; import laya.ui.List; import laya.utils.Handler; import...
来源: Laya_社区 发布时间: 20170323
...,连天空都看不到, 附件有场景模型文件 Laya3D.init(0, 0,true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_HORIZONTAL; Laya.Stat.show(); //var scene = Laya.stage.addChild(new Laya.Scene.load("cj02/LastHopeScene.ls")); var scene = Laya.stag...
来源: Laya_社区 发布时间: 20170707
...fined in laya/particle/ParticleSetting.ts:86 false代表RGBA整体插值,true代表RGBA逐分量插值 disableColor disableColor: boolean = false Defined in laya/particle/ParticleSetting.ts:88 false代表使用参数颜色数据,true代表使用原图颜色数据 duration duration: number = 1 De...
来源: Laya3.0_api 发布时间: 20231115
...lass GameUI extends Laya.Scene { constructor() { super(); Config.isAlpha = true; Laya.init(480, 900); Laya.stage.bgColor = null; //加载场景文件 this.loadScene("test/TestScene.scene"); //添加3D场景 var scene = Laya.stage.addChild(new Laya.Scene3D()); //添加照相机 var camera = (scene.ad...
来源: Laya_社区 发布时间: 20201021
...宽度,高度自动匹配 txt.width = 250; //自动换行 txt.wordWrap = true; txt.align = "center"; //使用我们注册的字体 txt.font = this.mFontName; txt.fontSize = 50; txt.leading = 5; Laya.stage.addChild(txt); } } } ``` ### **Text 类中相关接口:** **registerBitmapFont () 方法** ...
来源: Laya2.0_文档 发布时间: 20201114
...er 实例。 Returns AnimationPlayer Properties isCache isCache: boolean = true Defined in laya/ani/AnimationPlayer.ts:65 是否缓存 playbackRate playbackRate: number = 1 Defined in laya/ani/AnimationPlayer.ts:67 播放速率 returnToZeroStopped returnToZeroStopped: boolean Defined in laya/ani/Ani...
来源: Laya3.0_api 发布时间: 20231115
...调,出于性能考虑,引擎默认只执行一次,设置jumpFrame=true后,则回调会连续执行多次 再看laya.core.js中Timer._update()方法的这段代码: if (handler.repeat){ if (!handler.jum...
来源: Laya_社区 发布时间: 20180411
...poseBitmap(); } this._needRecoverTexture = true; } /** * 恢复纹理 */ __proto.recoverTexture=function(){ if(this._needRecoverTexture == true){ this._needRecoverTexture = false; ...
来源: Laya_社区 发布时间: 20201128
....loop(100, this, () => { if (r >= 360) r = 0; r++; sp.graphics.clear(true); sp.graphics.drawPie(0, 0, 50, 0, r, "#00ff1e"); sp2.graphics.clear(true); sp2.graphics.drawPie(0, 0, 50, 0, r, "#00ff1e"); }) 附件 : --> test.zip 2019-07-01 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...
来源: Laya_社区 发布时间: 20190701