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

大约有 3,520 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0075 秒)

1081. 粒子编辑器中的贴图个数在场景中失效 [ 66%]

...子,然后扔到了一个image父层级里,将image-gray属性设置为true,画布中粒子变灰效果正常,用代码预览粒子就不见了(不设true属性,粒子正常出现)  2017-11-28 0 0 分享 微博 QZONE 微信 Ace1024 赞同来自: mark, 粒子资源不要跟ui资源放...

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

1082. 鼠标穿透问题 [ 66%]

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

1083. VR的demo有没有加载3D场景的啊,实在不知怎么加 [ 66%]

...,连天空都看不到, 附件有场景模型文件 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

1084. laya.particle.ParticleSetting_API3.0 [ 66%]

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

1085. 3D场景中背景无法透明,版本2.7.1 [ 66%]

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

1086. 位图字体的制作与使用(ActionScript-LayaAir基础篇(AS3)-文本) [ 66%]

...宽度,高度自动匹配 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

1087. laya.ani.AnimationPlayer_API3.0 [ 66%]

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

1088. H5小游戏,IOS平台退到后台,长时间返回画面卡顿或者直接卡死! [ 66%]

...调,出于性能考虑,引擎默认只执行一次,设置jumpFrame=true后,则回调会连续执行多次 再看laya.core.js中Timer._update()方法的这段代码:                     if (handler.repeat){                         if (!handler.jum...

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

1089. spine 推荐使用方式 [ 66%]

...poseBitmap();         }         this._needRecoverTexture = true;     }     /**      * 恢复纹理      */     __proto.recoverTexture=function(){         if(this._needRecoverTexture == true){             this._needRecoverTexture = false;    ...

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

1090. Laya2.0绘制扇形遮罩,显示到部分角度时显示会有部分缺失(demo已上传) [ 66%]

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