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

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

1111. laya.resource.Prefab_API3.0 [ 65%]

...esource.lock Defined in laya/resource/Resource.ts:103 是否加锁,如果true为不能使用自动释放机制。 Optional name name: string Inherited from Resource.name Defined in laya/resource/Resource.ts:105 名称。 url url: string Inherited from Resource.url Defined in laya/resource/Resource...

来源: Laya3.0_api 发布时间: 20231115

1112. 3D模型旋转问题,鼠标移动之后,根据按下移动的X坐标差值判断左右旋转,但是会越转越快,请问是什么问题? [ 65%]

...id{ let mX:number = Laya.stage.mouseX; this.lastMouseX = mX; this.isDown = true; } private mouseUp():void{ this.isDown = false; } public rotate(vec:Laya.Vector3):void{ this.entity.transform.rotate(vec,true,false); }   2018-01-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...

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

1113. 缓动-时间线 [ 65%]

...,{x:100, y:100, scaleX:1, scaleY:1, alpha:1},2000,null,0); timeLine.play(0,true); timeLine.on(Event.COMPLETE,this,this.onComplete); timeLine.on(Event.LABEL, this, this.onLabel); } function onComplete() { console.log("timeLine complete!!!!"); } function onLabel(label) { console.log("LabelName:" + lab...

来源: Laya_示例 发布时间: 20241128

1114. tiledMap 45度地图在移动地图时出现没及时渲染的黑块 [ 65%]

...nt (default = null) — grid大小  enableLinear:Boolean (default = true) — 是否开启线性取样(为false时,可以解决地图黑线的问题,但画质会锐化)  limitRange:Boolean (default = false) — 把地图限制在显示区域第四个参数设置下就好了,...

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

1115. l微信开放域无法显示,但是可以正常传数据 [ 65%]

...k"; class Main { constructor() { //设置子域 Laya.isWXOpenDataContext = true; Laya.isWXPosMsg = true; //根据IDE设置初始化引擎 Laya.init(GameConfig.width, GameConfig.height,false); Laya.stage.scaleMode = GameConfig.scaleMode; Laya.stage.screenMode = GameConfig.screenMode; Laya.stage.align...

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

1116. 【LIST无法拖动】参照官方实例做的 [ 65%]

...    list.vScrollBarSkin = "";         list.selectEnable = true;         list.selectHandler = new Handler(this, this.onSelect);         list.renderHandler = new Handler(this, this.updateItem);                  // 设置数据项为对应图片...

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

1117. laya.media.SoundManager [ 65%]

...-7-0 Public Properties PropertyDefined By  autoReleaseSound : Boolean = true[static] 音效播放后自动删除。 SoundManager  autoStopMusic : Boolean[static] 失去焦点后是否自动停止背景音乐。 SoundManager  musicMuted : Boolean[static] 背景音乐(不包括音效)是否...

来源: Laya2.0_api 发布时间: 20190513

1118. 物理Bodies绑定Laya.Sprite [ 65%]

...is.engine; var world; this.engine = Matter.Engine.create({ enableSleeping: true // 开启睡眠 }); world = this.engine.world; Matter.Engine.run(this.engine); // Engine 启动 var render = LayaRender.create({ engine: this.engine, options: { wireframes: false, background: "#000" } }); LayaRender.run(...

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

1119. runTime使用(TypeScript-IDE篇(TS)-组件化开发相关) [ 65%]

...开调试面板(通过IDE设置调试模式,或者url地址增加debug=true参数,均可打开调试面板) if (GameConfig.debug || Laya.Utils.getQueryString("debug") == "true") Laya.enableDebugPanel(); if (GameConfig.stat) Laya.Stat.show(); Laya.alertGlobalError = true; //激活资源版本...

来源: Laya2.0_文档 发布时间: 20210715

1120. LayaAir2.0开始就无法设置透明背景了吗? [ 65%]

...public function Main() { //根据IDE设置初始化引擎 Config.isAlpha = true; Laya.init(480, 900); Laya.stage.bgColor = "none"; }   AS3版,从Laya1.x升级过来之后,发现2.0-2.8都无法通过这个来设置背景透明。 这让人很绝望啊。。。   附件 : --> 2020-08-16 添加...

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