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

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

231. LAYAAIR TO PROTOBUF [ 81%]

LAYAAIR TO PROTOBUF 请问这个 类库中  if-flash  if-script 这个 有地方控制吗 ?     还是说需要 根据自己的项目 手动修改 ,例如 现在 是 AS3 项目,但编译器使用的是laya ,用 你们的工具 转化的 AS3版本的protobuf 消息文件 中 带的还是 ...

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

232. 加载界面一直显示 0% [ 81%]

...是 0%  打印了下,loadingView.prototype.loading = function (value) { if (this.bridge) { if (this.sOS == "Conch-ios") { this.bridge.call("loading:", value); } else if (this.sOS == "Conch-android") { this.bridge.call("loading", value); } console.log("loadingView.prototype.loading=" + value); } }...

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

233. 如何将stage背景设置为透明 [ 81%]

...id { _bgColor = value; conchModel && conchModel.bgColor(value);   if (Render.isWebGL) { if (value && value !== "black" && value !== "#000000") { _wgColor = Color.create(value)._color; } else { _wgColor = null; } }   if (value) { Render.canvas.style.background = value; } els...

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

234. 模型的功能介绍(JavaScript-3D基础(JS)-LayaAir3D之模型和网格) [ 80%]

... 监听 changeMeshButton.on(Laya.Event.CLICK, this, function(){ index++; if (index % 5 === 1 ){ //切换mesh sphere.meshFilter.sharedMesh = box; } else if (index % 5 === 2){ //切换mesh sphere.meshFilter.sharedMesh = capsule; } else if(index % 5 === 3){ //切换mesh sphere.meshFilter.sharedMesh = c...

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

235. 模型的功能介绍(TypeScript-3D基础(TS)-LayaAir3D之模型和网格) [ 80%]

... 监听 changeMeshButton.on(Laya.Event.CLICK, this, function(){ index++; if (index % 5 === 1 ){ //切换mesh sphere.meshFilter.sharedMesh = box; } else if (index % 5 === 2){ //切换mesh sphere.meshFilter.sharedMesh = capsule; } else if(index % 5 === 3){ //切换mesh sphere.meshFilter.sharedMesh = c...

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

236. 游戏铺满固定大小容器,火狐和谷歌正常,edge会有滚动条? [ 80%]

...来自: Laya.timer.frameLoop(1,this,()=>{                if(this.lastClientWidth!=Laya.Browser.clientWidth){                     if(Laya.Browser.clientWidth>Laya.Browser.clientHeight){                         console.log("横屏",this.las...

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

237. 一个修复Laya1.8.3中的粒子销毁时报错黑屏问题的思路 [ 80%]

...ion () { $beginFlush.call(this); let attrs = Laya.Buffer._enableAtributes; if (attrs) { attrs.forEach((buffer, index) => { if (buffer && buffer.deleted) { Laya.WebGL.mainContext.disableVertexAttribArray(index); attrs[index] = null; } }); while (attrs.length > 0 && attrs[attrs.l...

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

238. as项目移植layflash问题 [ 80%]

...    m_dataSize = m_minReadable + m_dateHeadLength;             if (msgData.Data != null)             {                 m_dataSize += msgData.Data.length;             }             var sendData:ByteArray = new ByteArray();             sendDa...

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

239. 原生js如何调用laya里的方法? [ 80%]

...的方法都没法使用: (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NO...

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

240. LayaNative中加载自己缓存的资源 [ 80%]

...ion downloadFile(url:String,onComplete:Handler,onError:Handler=null):void{ if(window.conch) { var folder:String=window.conch.getCachePath()+"/download/"; if (!window.fs_exists(folder)) { window.fs_mkdir(folder); } var fileName:String = url.replace("http","").replace(/:/g,"").replace(new RegExp('/','...

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