大约有 69 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
...; (C:\Users\fp005\AppData\Roaming\npm\node_modules\lay ir-cmd\node_modules\fs-extra\lib\fs\index.js:3:11) at Module._compile (module.js:643:30) at Object.Module._extensions..js (module.js:654:10) at Module.load (module.js:556:32) at tryModuleLoad (module.js:499:12) at Function.Module._load (module.j...
来源: Laya_社区 发布时间: 20180505
...(ideModuleDir + 'rollup-plugin-glsl'); const path = require('path'); const fs = require('fs'); // 如果是发布时调用编译功能,增加prevTasks let prevTasks = ""; if (global.publish) { prevTasks = ["loadConfig"]; } gulp.task("compile", prevTasks, function () { // 发布时调用编译功...
来源: Laya_社区 发布时间: 20200918
...没有意义的代码 */ const LINENUM = 20; const LINENUM_RADOM = 13; var fs = require('fs'); var path = require('path'); var filterFils = ["Base64", "ThemeAdapter","AssetAdapter", "Platform", "wxgamesdk"];//忽略文件 var filterDirs = ["xxxx"];//忽略目录 var traceName = "xxxx";//添加的干...
来源: Laya_社区 发布时间: 20190613
... encoding = null; } 估计 传 encoding 为空字符串到 MiniFileMgr.fs.readFile 里会有问题,反正我加上这句就没问题了 完整代码如下: static readFile(filePath, encoding = "utf8", callBack = null, readyUrl = "", isSaveFile = false, fileType = "", isAutoClear = true) { ...
来源: Laya_社区 发布时间: 20191204
...T_TEX_VS; /*[IF-FLASH]*/fragmentShader = AGAL_ShaderList.shader.QB_NOT_TEX_FS; //[IF-JS]vertexShader=GLSL_ShaderList.shader.QB_NOT_TEX_VS; //[IF-JS]fragmentShader = GLSL_ShaderList.shader.QB_NOT_TEX_FS; //}} 注意,除了修改AGAL外,还必须在AS3代码内使用条件编译,设置GLSL的S...
来源: Laya_社区 发布时间: 20151221
...sSaveFile=false); (fileType===void 0)&& (fileType=""); MiniFileMgr.fs.readFile({filePath:filePath,encoding:encoding, success:function (data) { // 这一行,先判断文件名,后判断isSaveFile,在微信模拟器上可以工作, // 但是在微信真机上,api返回的临时文件...
来源: Laya_社区 发布时间: 20180604
...想了一个新的方法,把这个base64数据解密成png,用window.fs_writeFileSync(conch.getCachePath()+"/test.png", png);保存到本地,然后再用laya.net.Loader加载,我刚才试了一下,加载报错,我不知道我这种方法可不可行。 test: function (base64Str, sprite) ...
来源: Laya_社区 发布时间: 20180201
...1.0); gl_Position = u_MvpMatrix * position; } ``` 片元着色器 `outline.fs` 代码如下: ```c++ #ifdef FSHIGHPRECISION precision highp float; #else precision mediump float; #endif uniform float u_OutlineLightness; uniform vec4 u_OutlineColor; void main() { vec3 finalColor = u_OutlineColor.rgb * ...
来源: Laya2.0_文档 发布时间: 20210714
... false) { var sTempFontPath = conch.getCachePath() + "/runtimeFont/"; if (!fs_exists(sTempFontPath)) { fs_mkdir(sTempFontPath); } sTempFontPath += "layabox.ttf"; bRet = conch.initFreeTypeDefaultFontFromFile(sTempFontPath); if (bRet == false) { var data = ([b]yield asyncs.downloadSync[/b](location.fu...
来源: Laya_社区 发布时间: 20170320
...样是内部接口,可能会改变): ```javascript declare var fs_readFileSync:(file:string)=>ArrayBuffer; declare var fs_writeFileSync:(file:string,data:string|ArrayBuffer)=>boolean; declare var readFileSync:(file:string,encode:string)=>string;//这个直接返回字符串。 ``` 如果...
来源: Laya2.0_文档 发布时间: 20210714