当前位置: 首页 > news >正文

做网站赚什么钱建网站需要了解哪些网站建设知识

做网站赚什么钱,建网站需要了解哪些网站建设知识,公司简介范文100字左右,北京网站seo收费标准关于easySave2 easySave3保存数据的操作#xff1b;包含EasySave3运行报错的解决 /// 数据存储路径#xff08;Easy Save的默认储存位置为#xff1a;Application.persistentDataPath#xff0c;为了方便我们可以给它指定储存路径#xff09; #region 存储数据/*/// /// 存… 关于easySave2 easySave3保存数据的操作包含EasySave3运行报错的解决 /// 数据存储路径Easy Save的默认储存位置为Application.persistentDataPath为了方便我们可以给它指定储存路径 #region 存储数据/*/// /// 存储数据/// private void SaveData(){ES2.Save(123, dataPath IntData);ES2.Save(1.23f, dataPath FloatData);ES2.Save(true, dataPath BoolData);ES2.Save(abc, dataPath StringData);ES2.Save(new Vector3(10, 20, 30), dataPath Vector3Data);/// 存储transform GameObject go new GameObject();go.transform.localPosition new Vector3(10, 20, 30);go.transform.localScale new Vector3(3, 3, 3);ES2.Save(go.transform, dataPath TransformData);/// 存储数组int[] intArray new int[3] { 3, 2, 1 };ES2.Save(intArray, dataPath IntArrayData);/// 存储集合Liststring stringList new Liststring();stringList.Add(stringlist1);stringList.Add(stringlist2);stringList.Add(stringlist3);ES2.Save(stringList, dataPath StringListData);/// 存储字典Dictionaryint, string stringDict new Dictionaryint, string();stringDict.Add(1, a);stringDict.Add(2, b);ES2.Save(stringDict, dataPath StringDictData);/// 存储栈Stackstring stringStack new Stackstring();stringStack.Push(aaa);stringStack.Push(bbb);ES2.Save(stringStack, dataPath StringStackData);//保存图片 注意该图片原文件属性“Advanced Read/WriteEnable[*]”勾选可读写的// ES2.SaveImage(image.sprite.texture, MyImage.png);}*/#endregion#region 加载数据/*/// /// 加载数据/// private void LoadData(){int loadInt ES2.Loadint(dataPath IntData);Debug.Log(读取的int loadInt);float loadFloat ES2.Loadfloat(dataPath FloatData);Debug.Log(读取的float loadFloat);bool loadBool ES2.Loadbool(dataPath BoolData);Debug.Log(读取的bool loadBool);string loadString ES2.Loadstring(dataPath StringData);Debug.Log(读取的string loadString);Vector3 loadVector3 ES2.LoadVector3(dataPath Vector3Data);Debug.Log(读取的vector3 loadVector3);Transform loadTransform ES2.LoadTransform(dataPath TransformData);Debug.Log(读取的transform Position loadTransform.localPosition Scale loadTransform.localScale);/// 读取数组格式存储int[] loadIntArray ES2.LoadArrayint(dataPath IntArrayData);foreach (int i in loadIntArray){Debug.Log(读取的数组 i);}/// 读取集合格式存储Liststring loadStringList ES2.LoadListstring(dataPath StringListData);foreach (string s in loadStringList){Debug.Log(读取的集合数据 s);}/// 读取字典格式存储Dictionaryint, string loadStringDict ES2.LoadDictionaryint, string(dataPath StringDictData);foreach (var item in loadStringDict){Debug.Log(读取的字典数据 key item.Key value item.Value);}Stackstring loadStringStack ES2.LoadStackstring(dataPath StringStackData);foreach (string ss in loadStringStack){Debug.Log(读取的栈内数据 ss);}/// 读取纹理 注意该图片原文件属性“Advanced Read/WriteEnable[*]”勾选可读写的Texture2D tex ES2.LoadImage(MyImage.png);Sprite temp Sprite.Create(tex, new Rect(0, 0, tex.width, tex.height), new Vector2(0, 0));// showImage.sprite temp;}*/#endregion#region 删除数据/*/// /// 删除数据/// private void DeleteData(){/// 判断是否有该存储keyif (ES2.Exists(dataPath IntData)){Debug.Log(ES2.Exists(dataPath IntData));/// 删除存储keyES2.Delete(dataPath IntData);}}*/#endregion#region GUI测试用的 UI按钮/*void OnGUI(){if (GUI.Button(new Rect(0, 0, 100, 100), 储存数据)){SaveData();}if (GUI.Button(new Rect(0, 100, 100, 100), 读取数据)){LoadData();}if (GUI.Button(new Rect(0, 200, 100, 100), 删除数据)){DeleteData();}}*/#endregion#region 保存到本地/保存到web/*public IEnumerator UploadMesh(Mesh mesh, string tag) {// Create a URL and add parameters to the end of it.string myURL http://www.server.com/ES2.php;myURL ?webfilenamemyFile.txtwebusernameuserwebpasswordpass;// Create our ES2Web object.ES2Web web new ES2Web(myURL tag tag);// Start uploading our data and wait for it to finish.yield return StartCoroutine(web.Upload(mesh));if (web.isError){// Enter your own code to handle errors here.Debug.LogError(web.errorCode : web.error);} }public IEnumerator DownloadMesh(string tag) {// Create a URL and add parameters to the end of it.string myURL http://www.server.com/ES2.php;myURL ?webfilenamemyFile.txtwebusernameuserwebpasswordpass;// Create our ES2Web object.ES2Web web new ES2Web(myURL tag tag);// Start downloading our data and wait for it to finish.yield return StartCoroutine(web.Download());if (web.isError){// Enter your own code to handle errors here.Debug.LogError(web.errorCode : web.error);}else{// We could save our data to a local file and load from that.web.SaveToFile(myFile.txt);// Or we could just load directly from the ES2Web object.this.GetComponentMeshFilter().mesh web.LoadMesh(tag);} }*/#endregion#region 最新版的easySave3运行会报错,按照以下修改即可:/** private void Start(){if (LoadEventLoadEvent.OnStartsettings!null){Load();}}*/#endregion#region 读取/保存 音频/*// Get the AudioSource we want to use to play our AudioClip.var source this.GetComponentAudioSource();// Load an AudioClip from the streaming assets folder into our source.source.clip ES3.LoadAudio(Application.streamingAssetsPath /AudioFile.wav);// Play the AudioClip we just loaded using our AudioSource.source.Play();// Get the AudioSource containing our AudioClip.var source this.GetComponentAudioSource();// Save an AudioClip in Easy Saves uncompressed format.ES3.SaveAudioClip(myAudio, source.clip);// Load the AudioClip back into the AudioSource and play it.source.clip ES3.LoadAudioClip(myAudio);source.Play();*/#endregion#region 从Resource加载/*文件必须具有扩展名 例如:.bytes以便能够从参考资料中加载它// Create an ES3Settings object to set the storage location to Resources.var settings new ES3Settings();settings.location ES3.Location.Resources;// Load from a file called myFile.bytes in Resources.var myValue ES3.LoadVector3(myFile.bytes, settings);// Load from a file called myFile.bytes in a subfolder of Resources.var myValue ES3.LoadVector3(myFolder/myFile.bytes);*/#endregion#region 把 一堆键值数据 保存为string/byte[]/*// Create a new ES3File, providing a false parameter.var es3file new ES3File(false);// Save your data to the ES3File.es3File.SaveTransform(myTransform, this.transform);es3File.Savestring(myName, myScript.name);// etc ...//保存为字符串string fileAsString es3File.LoadRawString();//保存为 字节数组byte[] fileAsByteArray es3File.LoadRawBytes().*/#endregion#region 从 字符串/byte[] 读取/** //把字节数组转换成参数// If were loading from a byte array, simply provide it as a parameter.var es3file new ES3File(fileAsByteArray, false);// 把字符串转换为参数// 如果我们以字符串的形式加载首先需要将其转换为字节数组再把字节数组转换为参数。var es3file new ES3File((new ES3Settings()).encoding.GetBytes(fileAsString), false);//再对应取出响应的值// Load the data from the ES3File.es3File.LoadIntoTransform(myTransform, this.transform);//取出该值赋值到自身myScript.name es3File.Loadstring(myName); //取出 name// etc ...*/#endregion#region 电子表格/*使用ES3Spreadsheet, Easy Save能够创建电子表格并以CSV格式存储所有流行的电子表格软件都支持这种格式包括 Excel、OSX数字和OpenOffice。保存:var sheet new ES3Spreadsheet();// Add data to cells in the spreadsheet.for(int col0; col10; col){for(int row0; row8; row){sheet.SetCellstring(col, row, someData);}}sheet.Save(mySheet.csv);*//*如果要将数据追加到现有的电子表格请将电子表格的追加变量设置为true。电子表格中的任何行都将被添加到保存到的行末尾。读取:// Create a blank ES3Spreadsheet.var sheet new ES3Spreadsheet();sheet.Load(spreadsheet.csv);// Output the first row of the spreadsheet to console.for(int col0; colsheet.ColumnCount; col)Debug.Log(sheet.GetCellint(col, 0));*/#endregion
http://www.pierceye.com/news/616337/

相关文章:

  • 南宁建站模板源码公众号开发用什么技术
  • 北京自助建站软件软件外包公司的优势和劣势
  • 网页 代码怎么做网站建设规划展览馆网站的优势
  • 山西省建设主管部门网站单位网站建设意义
  • 怎么建设自己收费网站电影网站建设费用
  • 黑龙江建设网一体化平台seo网站关键词优化价格
  • 西宁做网站公司电话找公司网站建设
  • 有哪些企业可以做招聘的网站机械网站开发方案
  • 九江专业网站建设定制千库网免费素材图库
  • wordpress云建站太仓网站建设网站推广
  • 辽宁网站推广的目的西安企业做网站多少钱
  • 重庆微信网站建设网站平台网站怎么做
  • 90设计网站几次是什么意思厦门建设工程信息网官网
  • 小说章节收费网站建设东莞网络营销网站建设
  • 找工作网站如何设计一款软件
  • 贵金属企业网站源码手机端网站加盟
  • 大连企业网站排名优化平面设计和网页设计
  • 广州网站建设工作室招聘文创产品设计分析
  • 产品是做网站seo网站设计费用
  • 公司网站的搭建方案做海报图片的网站
  • 纯文本网站建设小米发布会最新
  • 定制版网站建设费用网站服务器干啥
  • 漂亮的网站是什么建设出来的弄一个小程序要多少钱
  • 房地产网站模板 下载免费空间和域名
  • 通付盾 建设网站公司最新永久地域自动跳转
  • 宁波建网站选哪家好一点wordpress手机全部显示
  • 如何注册属于自己的网站做列表的网站
  • 网站公司seo杭州网站建设模板
  • 网站内链如何布局优化大师下载
  • 如何做网站需求表格清单电影购买网站怎么设计