分享
分销 收藏 举报 申诉 / 12
播放页_导航下方通栏广告

类型unity三D关键技术之导出Unity场景的所有游戏对象信息.doc

  • 上传人:精****
  • 文档编号:3027539
  • 上传时间:2024-06-13
  • 格式:DOC
  • 页数:12
  • 大小:266.54KB
  • 下载积分:8 金币
  • 播放页_非在线预览资源立即下载上方广告
    配套讲稿:

    如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。

    特殊限制:

    部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。

    关 键  词:
    unity 关键技术 导出 场景 所有 游戏 对象 信息
    资源描述:
    导出Unity场景所有游戏对象信息,一种是XML一种是JSON。本篇文章咱们把游戏场景中游戏对象、旋转、缩放、平移与Prefab名称导出在XML与JSON中。然后解析刚刚导出XML或JSON通过脚本把导出游戏场景还原。在Unity官网上下载随便下载一种demo Project,如下图所示这是我刚刚在官网上下载一种范例程序。           接着将层次视图中所有游戏对象都封装成Prefab保存在资源途径中,这里注意一下如果你Prefab绑定脚本中有public Object 话 ,需要在代码中改一下。。用 Find() FindTag()此类办法在脚本中Awake()办法中来拿,否则Prefab动态加载时候无法赋值,如下图所示,我把封装Prefab对象都放在了Resources/Prefab文献夹下。   OK,当前咱们就需要编写咱们导出工具、在Project视图中创立Editor文献夹,接着创立脚本MyEditor 。如下图所示。   由于编辑游戏场景数量比较多,导出时候咱们需要遍历所有游戏场景,一种一种读取场景信息。然后获得游戏场景中所有游戏对象Prefab 名称 旋转 缩放 平移。关于XML使用请人们看我上一篇文章: Unity3D研究院之使用 C#合成解析XML与JSON(四十一) 代码中我只注释重点某些,嘿嘿。  MyEditor.cs C# 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 using UnityEngine; using System.Collections; using UnityEditor; using System.Collections.Generic; using System.Xml; using System.IO; using System.Text; using LitJson; public class MyEditor :Editor { //将所有游戏场景导出为XML格式 [MenuItem ("GameObject/ExportXML")] static void ExportXML () {     string filepath = Application.dataPath + @"/StreamingAssets/my.xml"; if(!File.Exists (filepath)) { File.Delete(filepath); } XmlDocument xmlDoc = new XmlDocument(); XmlElement root = xmlDoc.CreateElement("gameObjects"); //遍历所有游戏场景 foreach (UnityEditor.EditorBuildSettingsScene S in UnityEditor.EditorBuildSettings.scenes)         {          //当关卡启用             if (S.enabled)             {              //得到关卡名称                 string name = S.path;                 //打开这个关卡 EditorApplication.OpenScene(name); XmlElement scenes = xmlDoc.CreateElement("scenes");         scenes.SetAttribute("name",name); foreach (GameObject obj in Object.FindObjectsOfType(typeof(GameObject))) {      if (obj.transform.parent == null)      { XmlElement gameObject = xmlDoc.CreateElement("gameObjects"); gameObject.SetAttribute("name",obj.name);   gameObject.SetAttribute("asset",obj.name + ".prefab"); XmlElement transform = xmlDoc.CreateElement("transform"); XmlElement position = xmlDoc.CreateElement("position"); XmlElement position_x = xmlDoc.CreateElement("x"); position_x.InnerText = obj.transform.position.x+"";    XmlElement position_y = xmlDoc.CreateElement("y"); position_y.InnerText = obj.transform.position.y+""; XmlElement position_z = xmlDoc.CreateElement("z"); position_z.InnerText = obj.transform.position.z+""; position.AppendChild(position_x); position.AppendChild(position_y); position.AppendChild(position_z);   XmlElement rotation = xmlDoc.CreateElement("rotation"); XmlElement rotation_x = xmlDoc.CreateElement("x"); rotation_x.InnerText = obj.transform.rotation.eulerAngles.x+"";    XmlElement rotation_y = xmlDoc.CreateElement("y"); rotation_y.InnerText = obj.transform.rotation.eulerAngles.y+""; XmlElement rotation_z = xmlDoc.CreateElement("z"); rotation_z.InnerText = obj.transform.rotation.eulerAngles.z+""; rotation.AppendChild(rotation_x); rotation.AppendChild(rotation_y); rotation.AppendChild(rotation_z);   XmlElement scale = xmlDoc.CreateElement("scale"); XmlElement scale_x = xmlDoc.CreateElement("x"); scale_x.InnerText = obj.transform.localScale.x+"";    XmlElement scale_y = xmlDoc.CreateElement("y"); scale_y.InnerText = obj.transform.localScale.y+""; XmlElement scale_z = xmlDoc.CreateElement("z"); scale_z.InnerText = obj.transform.localScale.z+"";   scale.AppendChild(scale_x); scale.AppendChild(scale_y); scale.AppendChild(scale_z);   transform.AppendChild(position); transform.AppendChild(rotation); transform.AppendChild(scale);   gameObject.AppendChild(transform);      scenes.AppendChild(gameObject); root.AppendChild(scenes);          xmlDoc.AppendChild(root);          xmlDoc.Save(filepath);        } }             }         }         //刷新Project视图, 否则需要手动刷新哦 AssetDatabase.Refresh(); }   //将所有游戏场景导出为JSON格式 [MenuItem ("GameObject/ExportJSON")] static void ExportJSON () { string filepath = Application.dataPath + @"/StreamingAssets/json.txt";        FileInfo t = new FileInfo(filepath); if(!File.Exists (filepath)) { File.Delete(filepath); }         StreamWriter sw = t.CreateText();   StringBuilder sb = new StringBuilder ();         JsonWriter writer = new JsonWriter (sb); writer.WriteObjectStart (); writer.WritePropertyName ("GameObjects"); writer.WriteArrayStart ();   foreach (UnityEditor.EditorBuildSettingsScene S in UnityEditor.EditorBuildSettings.scenes)         {             if (S.enabled)             {                 string name = S.path; EditorApplication.OpenScene(name); writer.WriteObjectStart(); writer.WritePropertyName("scenes"); writer.WriteArrayStart (); writer.WriteObjectStart(); writer.WritePropertyName("name"); writer.Write(name); writer.WritePropertyName("gameObject"); writer.WriteArrayStart ();   foreach (GameObject obj in Object.FindObjectsOfType(typeof(GameObject))) {      if (obj.transform.parent == null)      { writer.WriteObjectStart(); writer.WritePropertyName("name"); writer.Write(obj.name);   writer.WritePropertyName("position");         writer.WriteArrayStart (); writer.WriteObjectStart(); writer.WritePropertyName("x"); writer.Write(obj.transform.position.x.ToString("F5")); writer.WritePropertyName("y"); writer.Write(obj.transform.position.y.ToString("F5")); writer.WritePropertyName("z"); writer.Write(obj.transform.position.z.ToString("F5")); writer.WriteObjectEnd(); writer.WriteArrayEnd();   writer.WritePropertyName("rotation");         writer.WriteArrayStart (); writer.WriteObjectStart(); writer.WritePropertyName("x"); writer.Write(obj.transform.rotation.eulerAngles.x.ToString("F5")); writer.WritePropertyName("y"); writer.Write(obj.transform.rotation.eulerAngles.y.ToString("F5")); writer.WritePropertyName("z"); writer.Write(obj.transform.rotation.eulerAngles.z.ToString("F5")); writer.WriteObjectEnd(); writer.WriteArrayEnd();   writer.WritePropertyName("scale");         writer.WriteArrayStart (); writer.WriteObjectStart(); writer.WritePropertyName("x"); writer.Write(obj.transform.localScale.x.ToString("F5")); writer.WritePropertyName("y"); writer.Write(obj.transform.localScale.y.ToString("F5")); writer.WritePropertyName("z"); writer.Write(obj.transform.localScale.z.ToString("F5")); writer.WriteObjectEnd(); writer.WriteArrayEnd();   writer.WriteObjectEnd(); } }   writer.WriteArrayEnd(); writer.WriteObjectEnd(); writer.WriteArrayEnd(); writer.WriteObjectEnd(); } } writer.WriteArrayEnd(); writer.WriteObjectEnd ();   sw.WriteLine(sb.ToString());         sw.Close();         sw.Dispose(); AssetDatabase.Refresh(); } }   此时咱们就可以导出游戏场景信息拉,注意游戏场景需要当前Project Setting 中注册。点击 GameObject – > Export    XML 和 GameObject – > ExportJson 菜单项即可开始生成。     如下图所示,场景导出完毕后,会将xml 与Json 文献保存在StreamingAssets途径下,放在这里因素是以便移动平台移植,由于它们属于二进制文献,移动平台在读取二进制文献途径是不同样。一定要放在这里喔。     接着,我继续创立两个游戏场景,一种用来解析XML场景,一种用来解析JSON场景。  XML场景中,创立一种空游戏对象,把XML.cs挂上去。 C# 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 using UnityEngine; using System.Collections; using System.Xml; using System.IO; public class XML :MonoBehaviour {   // Use this for initialization void Start () {   //电脑和iphong上途径是不同样,这里用标签判断一下。 #if UNITY_EDITOR string filepath = Application.dataPath +"/StreamingAssets"+"/my.xml"; #elif UNITY_IPHONE   string filepath = Application.dataPath +"/Raw"+"/my.xml"; #endif         //如果文献存在话开始解析。 if(File.Exists (filepath)) { XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load(filepath); XmlNodeList nodeList=xmlDoc.SelectSingleNode("gameObjects").ChildNodes; foreach(XmlElement scene  in nodeList) { //由于我XML是把所有游戏对象所有导出, 因此这里判断一下只解析需要场景中游戏对象 //JSON和它原理类似 if(!scene.GetAttribute("name").Equals("Assets/StarTrooper.unity")) { continue; }   foreach(XmlElement gameObjects in scene.ChildNodes) {   string asset = "Prefab/" + gameObjects.GetAttribute("name"); Vector3 pos = Vector3.zero; Vector3 rot = Vector3.zero; Vector3 sca = Vector3.zero; foreach(XmlElement transform in gameObjects.ChildNodes) { foreach(XmlElement prs in transform.ChildNodes) { if(prs.Name == "position") { foreach(XmlElement position in prs.ChildNodes) { switch(position.Name) { case "x": pos.x = float.Parse(position.InnerText); break; case "y": pos.y = float.Parse(position.InnerText); break; case "z": pos.z = float.Parse(position.InnerText); break; } } }else if(prs.Name == "rotation") { foreach(XmlElement rotation in prs.ChildNodes) { switch(rotation.Name) { case "x": rot.x = float.Parse(rotation.InnerText); break; case "y": rot.y = float.Parse(rotation.InnerText); break; case "z": rot.z = float.Parse(rotation.InnerText); break; } } }else if(prs.Name == "scale") { foreach(XmlElement scale in prs.ChildNodes) { switch(scale.Name) { case "x": sca.x = float.Parse(scale.InnerText); break; case "y": sca.y = float.Parse(scale.InnerText); break; case "z": sca.z = float.Parse(scale.InnerText); break; } } } }   //拿到 旋转 缩放 平移 后来克隆新游戏对象 GameObject ob = (GameObject)Instantiate(Resources.Load(asset),pos,Quaternion.Euler(rot)); ob.transform.localScale = sca;   } } } } }   // Update is called once per frame void Update () {   }   void OnGUI() { if(GUI.Button(new Rect(0,0,200,200),"XML WORLD")) { Application.LoadLevel("JSONScene"); }   }   }   接着JSON场景中,创立一种空游戏对象,把JSON.cs挂上去。 C# 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 using UnityEngine; using System.Collections; using System.IO; using LitJson;   public class JSON :MonoBehaviour {   // Use this for initialization void Start () { #if UNITY_EDITOR   string filepath = Application.dataPath +"/StreamingAssets"+"/json.txt"; #elif UNITY_IPHONE   string filepath = Application.dataPath +"/Raw"+"/json.txt"; #endif   StreamReader sr  = File.OpenText(filepath); string  strLine = sr.ReadToEnd();    JsonData jd = JsonMapper.ToObject(strLine);    JsonData gameObjectArray = jd["GameObjects"]; int i,j,k; for (i = 0;i < gameObjectArray.Count;i++) {    JsonData senseArray = gameObjectArray[i]["scenes"];    for (j = 0;j < senseArray.Count;j++)       { string sceneName = (string)senseArray[j]["name"]; if(!sceneName.Equals("Assets/StarTrooper.unity")) { continue; } JsonData gameObjects = senseArray[j]["gameObject"];   for (k = 0;k < gameObjects.Count;k++) { string objectName = (string)gameObjects[k]["name"]; string asset = "Prefab/" + objectName; Vector3 pos = Vector3.zero; Vector3 rot = Vector3.zero; Vector3 sca = Vector3.zero;   JsonData position = gameObjects[k]["position"]; JsonData rotation = gameObjects[k]["rotation"]; JsonData scale = gameObjects[k]["scale"];   pos.x = float.Parse((string)position[0]["x"]); pos.y = float.Parse((string)position[0]["y"]); pos.z = float.Parse((string)position[0]["z"]);   rot.x = float.Parse((string)rotation[0]["x"]); rot.y = float.Parse((string)rotation[0]["y"]); rot.z = float.Parse((string)rotation[0]["z"]);   sca.x = float.Parse((string)scale[0]["x"]); sca.y = float.Parse((string)scale[0]["y"]); sca.z = float.Parse((string)scale[0]["z"]);   GameObject ob = (GameObject)Instantiate(Resources.Load(asset),pos,Quaternion.Euler(rot)); ob.transform.localScale = sca;   }      } }   }   // Update is called once per frame void Update () {   }   void OnGUI() { if(GUI.Button(new Rect(0,0,200,200),"JSON WORLD")) { Application.LoadLevel("XMLScene"); }   }   }  
    展开阅读全文
    提示  咨信网温馨提示:
    1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
    2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
    3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
    4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前可先查看【教您几个在下载文档中可以更好的避免被坑】。
    5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
    6、文档遇到问题,请及时联系平台进行协调解决,联系【微信客服】、【QQ客服】,若有其他问题请点击或扫码反馈【服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【版权申诉】”,意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:0574-28810668;投诉电话:18658249818。

    开通VIP折扣优惠下载文档

    自信AI创作助手
    关于本文
    本文标题:unity三D关键技术之导出Unity场景的所有游戏对象信息.doc
    链接地址:https://www.zixin.com.cn/doc/3027539.html
    页脚通栏广告

    Copyright ©2010-2026   All Rights Reserved  宁波自信网络信息技术有限公司 版权所有   |  客服电话:0574-28810668    微信客服:咨信网客服    投诉电话:18658249818   

    违法和不良信息举报邮箱:help@zixin.com.cn    文档合作和网站合作邮箱:fuwu@zixin.com.cn    意见反馈和侵权处理邮箱:1219186828@qq.com   | 证照中心

    12321jubao.png12321网络举报中心 电话:010-12321  jubao.png中国互联网举报中心 电话:12377   gongan.png浙公网安备33021202000488号  icp.png浙ICP备2021020529号-1 浙B2-20240490   


    关注我们 :微信公众号  抖音  微博  LOFTER               

    自信网络  |  ZixinNetwork