The file 'MemoryStream' is corrupted! Remove it and launch unity again!
[Position out of bounds! > ]

有时候我们会遇到这个报错,然后整个U3D就崩溃了,原因是在于某些Prefabs的脚本引用丢失了,这个时候,只要把项目的所有丢失引用的Prefabs问题都解决了就OK了。

那么问题来了,有几万个Prefab也手动去解决吗,不!这里有个方便你检查丢失引用的脚本,用这个就可以检查出所有的丢失Prefab了,需要注意的是有一些被列举出来的Prefab虽然没有丢失引用,然后是它的子项目丢失引用了,这个脚本是无法把哪一个子game object指出来的,这个时候,迩只能把指定的丢失的prefab拖到U3D的Hierarchy下然后仔细把所有的丢失引用问题解决就好了。

如果一个丢失引用的Prefab迩拖到Hierarchy时它是不是显示是蓝色的,如果迩修复了所有的引用,点一下Apply看看是否变成蓝色,如果是的话那证明这个Prefab的所有丢失引用问题已经解决了。

 //Assets/Editor/SearchForComponents.cs
using UnityEngine;
using UnityEditor;
using System.Collections;
using System.Collections.Generic; public class SearchForComponents : EditorWindow {
[MenuItem( "EDITORS/Search For Components" )]
static void Init () {
SearchForComponents window = (SearchForComponents) EditorWindow.GetWindow( typeof( SearchForComponents ) );
window.Show();
window.position = new Rect( , , , );
} string[] modes = new string[] { "Search for component usage", "Search for missing components" };
string[] checkType = new string[] { "Check single component", "Check all components" }; List<string> listResult;
List<ComponentNames> prefabComponents,notUsedComponents, addedComponents, existingComponents, sceneComponents;
int editorMode, selectedCheckType;
MonoScript targetComponent;
string componentName = ""; bool showPrefabs, showAdded, showScene, showUnused = true;
Vector2 scroll, scroll1, scroll2, scroll3, scroll4; class ComponentNames {
public string componentName;
public string namespaceName;
public string assetPath;
public List<string> usageSource;
public ComponentNames ( string comp, string space, string path ) {
this.componentName = comp;
this.namespaceName = space;
this.assetPath = path;
this.usageSource = new List<string>();
}
public override bool Equals ( object obj ) {
return ( (ComponentNames) obj ).componentName == componentName && ( (ComponentNames) obj ).namespaceName == namespaceName;
}
public override int GetHashCode () {
return componentName.GetHashCode() + namespaceName.GetHashCode();
}
} void OnGUI () {
GUILayout.Label(position+"");
GUILayout.Space( );
int oldValue = GUI.skin.window.padding.bottom;
GUI.skin.window.padding.bottom = -;
Rect windowRect = GUILayoutUtility.GetRect( , );
windowRect.x += ;
windowRect.width -= ;
editorMode = GUI.SelectionGrid( windowRect, editorMode, modes, , "Window" );
GUI.skin.window.padding.bottom = oldValue; switch ( editorMode ) {
case :
selectedCheckType = GUILayout.SelectionGrid( selectedCheckType, checkType, , "Toggle" );
GUI.enabled = selectedCheckType == ;
targetComponent = (MonoScript) EditorGUILayout.ObjectField( targetComponent, typeof( MonoScript ), false );
GUI.enabled = true; if ( GUILayout.Button( "Check component usage" ) ) {
AssetDatabase.SaveAssets();
switch ( selectedCheckType ) {
case :
componentName = targetComponent.name;
string targetPath = AssetDatabase.GetAssetPath( targetComponent );
string[] allPrefabs = GetAllPrefabs();
listResult = new List<string>();
foreach ( string prefab in allPrefabs ) {
string[] single = new string[] { prefab };
string[] dependencies = AssetDatabase.GetDependencies( single );
foreach ( string dependedAsset in dependencies ) {
if ( dependedAsset == targetPath ) {
listResult.Add( prefab );
}
}
}
break;
case :
List<string> scenesToLoad = new List<string>();
existingComponents = new List<ComponentNames>();
prefabComponents = new List<ComponentNames>();
notUsedComponents = new List<ComponentNames>();
addedComponents = new List<ComponentNames>();
sceneComponents = new List<ComponentNames>(); if ( EditorApplication.SaveCurrentSceneIfUserWantsTo() ) {
string projectPath = Application.dataPath;
projectPath = projectPath.Substring( , projectPath.IndexOf( "Assets" ) ); string[] allAssets = AssetDatabase.GetAllAssetPaths(); foreach ( string asset in allAssets ) {
int indexCS = asset.IndexOf( ".cs" );
int indexJS = asset.IndexOf( ".js" );
if ( indexCS != - || indexJS != - ) {
ComponentNames newComponent = new ComponentNames( NameFromPath( asset ), "", asset );
try {
System.IO.FileStream FS = new System.IO.FileStream( projectPath + asset, System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.ReadWrite );
System.IO.StreamReader SR = new System.IO.StreamReader( FS );
string line;
while ( !SR.EndOfStream ) {
line = SR.ReadLine();
int index1 = line.IndexOf( "namespace" );
int index2 = line.IndexOf( "{" );
if ( index1 != - && index2 != - ) {
line = line.Substring( index1 + );
index2 = line.IndexOf( "{" );
line = line.Substring( , index2 );
line = line.Replace( " ", "" );
newComponent.namespaceName = line;
}
}
} catch {
} existingComponents.Add( newComponent ); try {
System.IO.FileStream FS = new System.IO.FileStream( projectPath + asset, System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.ReadWrite );
System.IO.StreamReader SR = new System.IO.StreamReader( FS ); string line;
int lineNum = ;
while ( !SR.EndOfStream ) {
lineNum++;
line = SR.ReadLine();
int index = line.IndexOf( "AddComponent" );
if ( index != - ) {
line = line.Substring( index + );
if ( line[] == '(' ) {
line = line.Substring( , line.IndexOf( ')' ) - );
} else if ( line[] == '<' ) {
line = line.Substring( , line.IndexOf( '>' ) - );
} else {
continue;
}
line = line.Replace( " ", "" );
line = line.Replace( "\"", "" );
index = line.LastIndexOf( '.' );
ComponentNames newComp;
if ( index == - ) {
newComp = new ComponentNames( line, "", "" );
} else {
newComp = new ComponentNames( line.Substring( index + , line.Length - ( index + ) ), line.Substring( , index ), "" );
}
string pName = asset + ", Line " + lineNum;
newComp.usageSource.Add( pName );
index = addedComponents.IndexOf( newComp );
if ( index == - ) {
addedComponents.Add( newComp );
} else {
if ( !addedComponents[index].usageSource.Contains( pName ) ) addedComponents[index].usageSource.Add( pName );
}
}
}
} catch {
}
}
int indexPrefab = asset.IndexOf( ".prefab" ); if ( indexPrefab != - ) {
string[] single = new string[] { asset };
string[] dependencies = AssetDatabase.GetDependencies( single );
foreach ( string dependedAsset in dependencies ) {
if ( dependedAsset.IndexOf( ".cs" ) != - || dependedAsset.IndexOf( ".js" ) != - ) {
ComponentNames newComponent = new ComponentNames( NameFromPath( dependedAsset ), GetNamespaceFromPath( dependedAsset ), dependedAsset );
int index = prefabComponents.IndexOf( newComponent );
if ( index == - ) {
newComponent.usageSource.Add( asset );
prefabComponents.Add( newComponent );
} else {
if ( !prefabComponents[index].usageSource.Contains( asset ) ) prefabComponents[index].usageSource.Add( asset );
}
}
}
}
int indexUnity = asset.IndexOf( ".unity" );
if ( indexUnity != - ) {
scenesToLoad.Add( asset );
}
} for ( int i = addedComponents.Count - ; i > -; i-- ) {
addedComponents[i].assetPath = GetPathFromNames( addedComponents[i].namespaceName, addedComponents[i].componentName );
if ( addedComponents[i].assetPath == "" ) addedComponents.RemoveAt( i ); } foreach ( string scene in scenesToLoad ) {
EditorApplication.OpenScene( scene );
GameObject[] sceneGOs = GetAllObjectsInScene();
foreach ( GameObject g in sceneGOs ) {
Component[] comps = g.GetComponentsInChildren<Component>( true );
foreach ( Component c in comps ) { if ( c != null && c.GetType() != null && c.GetType().BaseType != null && c.GetType().BaseType == typeof( MonoBehaviour ) ) {
SerializedObject so = new SerializedObject( c );
SerializedProperty p = so.FindProperty( "m_Script" );
string path = AssetDatabase.GetAssetPath( p.objectReferenceValue );
ComponentNames newComp = new ComponentNames( NameFromPath( path ), GetNamespaceFromPath( path ), path );
newComp.usageSource.Add( scene );
int index = sceneComponents.IndexOf( newComp );
if ( index == - ) {
sceneComponents.Add( newComp );
} else {
if ( !sceneComponents[index].usageSource.Contains( scene ) ) sceneComponents[index].usageSource.Add( scene );
}
}
}
}
} foreach ( ComponentNames c in existingComponents ) {
if ( addedComponents.Contains( c ) ) continue;
if ( prefabComponents.Contains( c ) ) continue;
if ( sceneComponents.Contains( c ) ) continue;
notUsedComponents.Add( c );
} addedComponents.Sort( SortAlphabetically );
prefabComponents.Sort( SortAlphabetically );
sceneComponents.Sort( SortAlphabetically );
notUsedComponents.Sort( SortAlphabetically );
}
break;
}
}
break;
case :
if ( GUILayout.Button( "Search!" ) ) {
string[] allPrefabs = GetAllPrefabs();
listResult = new List<string>();
foreach ( string prefab in allPrefabs ) {
UnityEngine.Object o = AssetDatabase.LoadMainAssetAtPath( prefab );
GameObject go;
try {
go = (GameObject) o;
Component[] components = go.GetComponentsInChildren<Component>( true );
foreach ( Component c in components ) {
if ( c == null ) {
listResult.Add( prefab );
}
}
} catch {
Debug.Log( "For some reason, prefab " + prefab + " won't cast to GameObject" );
}
}
}
break;
}
if ( editorMode == || selectedCheckType == ) {
if ( listResult != null ) {
if ( listResult.Count == ) {
GUILayout.Label( editorMode == ? ( componentName == "" ? "Choose a component" : "No prefabs use component " + componentName ) : ( "No prefabs have missing components!\nClick Search to check again" ) );
} else {
GUILayout.Label( editorMode == ? ( "The following prefabs use component " + componentName + ":" ) : ( "The following prefabs have missing components:" ) );
scroll = GUILayout.BeginScrollView( scroll );
foreach ( string s in listResult ) {
GUILayout.BeginHorizontal();
GUILayout.Label( s, GUILayout.Width( position.width / ) );
if ( GUILayout.Button( "Select", GUILayout.Width( position.width / - ) ) ) {
Selection.activeObject = AssetDatabase.LoadMainAssetAtPath( s );
}
GUILayout.EndHorizontal();
}
GUILayout.EndScrollView();
}
}
} else {
showPrefabs = GUILayout.Toggle( showPrefabs, "Show prefab components" );
if ( showPrefabs ) {
GUILayout.Label( "The following components are attatched to prefabs:" );
DisplayResults( ref scroll1, ref prefabComponents );
}
showAdded = GUILayout.Toggle( showAdded, "Show AddComponent arguments" );
if ( showAdded ) {
GUILayout.Label( "The following components are AddComponent arguments:" );
DisplayResults( ref scroll2, ref addedComponents );
}
showScene = GUILayout.Toggle( showScene, "Show Scene-used components" );
if ( showScene ) {
GUILayout.Label( "The following components are used by scene objects:" );
DisplayResults( ref scroll3, ref sceneComponents );
}
showUnused = GUILayout.Toggle( showUnused, "Show Unused Components" );
if ( showUnused ) {
GUILayout.Label( "The following components are not used by prefabs, by AddComponent, OR in any scene:" );
DisplayResults( ref scroll4, ref notUsedComponents );
}
}
} int SortAlphabetically ( ComponentNames a, ComponentNames b ) {
return a.assetPath.CompareTo( b.assetPath );
} GameObject[] GetAllObjectsInScene () {
List<GameObject> objectsInScene = new List<GameObject>();
GameObject[] allGOs = (GameObject[]) Resources.FindObjectsOfTypeAll( typeof( GameObject ) );
foreach ( GameObject go in allGOs ) {
//if ( go.hideFlags == HideFlags.NotEditable || go.hideFlags == HideFlags.HideAndDontSave )
// continue; string assetPath = AssetDatabase.GetAssetPath( go.transform.root.gameObject );
if ( !string.IsNullOrEmpty( assetPath ) )
continue; objectsInScene.Add( go );
} return objectsInScene.ToArray();
} void DisplayResults ( ref Vector2 scroller, ref List<ComponentNames> list ) {
if ( list == null ) return;
scroller = GUILayout.BeginScrollView( scroller );
foreach ( ComponentNames c in list ) {
GUILayout.BeginHorizontal();
GUILayout.Label( c.assetPath, GUILayout.Width( position.width / * ) );
if ( GUILayout.Button( "Select", GUILayout.Width( position.width / - ) ) ) {
Selection.activeObject = AssetDatabase.LoadMainAssetAtPath( c.assetPath );
}
GUILayout.EndHorizontal();
if ( c.usageSource.Count == ) {
GUILayout.Label( " In 1 Place: " + c.usageSource[] );
}
if ( c.usageSource.Count > ) {
GUILayout.Label( " In " + c.usageSource.Count + " Places: " + c.usageSource[] + ", " + c.usageSource[] + ( c.usageSource.Count > ? ", ..." : "" ) );
}
}
GUILayout.EndScrollView(); } string NameFromPath ( string s ) {
s = s.Substring( s.LastIndexOf( '/' ) + );
return s.Substring( , s.Length - );
} string GetNamespaceFromPath ( string path ) {
foreach ( ComponentNames c in existingComponents ) {
if ( c.assetPath == path ) {
return c.namespaceName;
}
}
return "";
} string GetPathFromNames ( string space, string name ) {
ComponentNames test = new ComponentNames( name, space, "" );
int index = existingComponents.IndexOf( test );
if ( index != - ) {
return existingComponents[index].assetPath;
}
return "";
} public static string[] GetAllPrefabs () {
string[] temp = AssetDatabase.GetAllAssetPaths();
List<string> result = new List<string>();
foreach ( string s in temp ) {
if ( s.Contains( ".prefab" ) ) result.Add( s );
}
return result.ToArray();
}
}

http://forum.unity3d.com/threads/unity-4-5-memory-stream-is-corrupted.248356/

http://forum.unity3d.com/threads/editor-want-to-check-all-prefabs-in-a-project-for-an-attached-monobehaviour.253149/#post-1673716

The file 'MemoryStream' is corrupted! 的解决办法的更多相关文章

  1. QT5.1在Windows下 出现QApplication: No such file or directory 问题的解决办法

    QT5.0.1在Windows下 出现QApplication: No such file or directory 问题的解决办法 分类: 编程语言学习 软件使用 QT编程学习2013-03-07 ...

  2. linux下解压大于4G文件提示error: Zip file too big错误的解决办法

    error: Zip file too big (greater than 4294959102 bytes)错误解决办法.zip文件夹大于4GB,在centos下无法正常unzip,需要使用第三方工 ...

  3. PHP连接MySQL报错"No such file or directory"的解决办法

    好下面说一下连接MYSQL数据库时报错的解决办法. 1,首先确定是mysql_connect()和mysql_pconnect()的问题,故障现象就是函数返回空,而mysql_error()返回“No ...

  4. Mac下PHP连接MySQL报错"No such file or directory"的解决办法

    首先做个简短的介绍. [说明1]MAC下MYSQL的安装路径: /usr/local/mysql-5.1.63-osx10.6-x86_64 数据库的数据文件在该目录的data文件夹中: 命令文件在b ...

  5. Linux运行shell脚本提示No such file or directory错误的解决办法

    Linux执行.sh文件,提示No such file or directory的问题: 原因:在windows中写好shell脚本测试正常,但是上传到 Linux 上以脚本方式运行命令时提示No s ...

  6. QT5.0.1在Windows下 出现QApplication: No such file or directory 问题的解决办法

    第一个Qt 程序 环境window ,ide qt creator 新建一个 C++ 项目 > 新建一个main.cpp 输入如下代码 #include<QApplication> ...

  7. iOS之报错“Cannot create __weak reference in file using manual reference counting”解决办法

    解决的办法:在Build Settings--------->Aplle LLVM8.0 - Language - Objectibe-C------------->Weak Refere ...

  8. CentOS7使用yum时File contains no section headers.解决办法

    本文转载于  https://blog.csdn.net/trokey/article/details/84908838 安装好CenOS7后,自带的yum不能直接使用,使用会出现如下问题: 原因是没 ...

  9. Qt 5 在Windows下 出现QApplication: No such file or directory 问题的解决办法

    解决方法是:在*.pro工程项目文件中添加一行QT += widgets,然后再编译运行就OK了.

随机推荐

  1. 安装完grunt和grunt-cli仍然无法识别grunt

    如题: 在安装完grunt-cli和grunt之后,仍然不识别grunt. 反复确认是-g安装... 原因: 有可能是nodejs安装出现问题,到时npm的路径没有出现在环境变量里面. 把C:\Use ...

  2. JQuery官方学习资料(译):使用JQuery的.index()方法

        .index()是一个JQuery对象方法,一般用于搜索JQuery对象上一个给定的元素.该方法有四种不同的函数签名,接下来将讲解这四种函数签名的具体用法. 无参数的.index() < ...

  3. celery与mangodb搭配应用

    写作背景介绍 在celery简单应用中已经介绍了如何去配置一个celery应用,也知道怎么分离任务逻辑代码与客户端代码了.我们现在的任务是怎么把计算结果保存到数据库中,这种数据持久化是非常重要的.你一 ...

  4. paip.提高效率---集合的存取括号方式 uapi java python php js 的实现比较

    paip.提高效率---集合的存取括号方式 uapi java python php js 的实现比较 ##java ----------- 在JDK1.7中,摒弃了Java集合接口的实现类,如:Ar ...

  5. MYSQL子查询与连接

    37:子查询与连接SET 列名 gbk;//改变客户端数据表的编码类型. 子查询子查询(Subquery)是指出现在其他SQL语句内的SELECT子句例如SELECT * FROM t1 WHERE ...

  6. Leetcode 231 Power of Two 数论

    同样是判断数是否是2的n次幂,同 Power of three class Solution { public: bool isPowerOfTwo(int n) { ) && ((( ...

  7. 通过ReentrantLock源代码分析AbstractQueuedSynchronizer独占模式

    1. 重入锁的概念与作用       reentrant 锁意味着什么呢?简单来说,它有一个与获取锁相关的计数器,如果已占有锁的某个线程再次获取锁,那么lock方法中将计数器就加1后就会立刻返回.当释 ...

  8. LoadRunner 如何将英文的字符串转换成UTF-8格式的字符串?

    7.48  如何手动转换字符串编码 1.问题提出 如何将英文的字符串转换成UTF-8格式的字符串? 2.问题解答 可以使用lr_convert_string_encoding函数将字符串从一种编码手动 ...

  9. Apache Solr查询语法(转)

    查询参数 常用: q - 查询字符串,必须的. fl - 指定返回那些字段内容,用逗号或空格分隔多个. start - 返回第一条记录在完整找到结果中的偏移位置,0开始,一般分页用. rows - 指 ...

  10. 三步解决EntityFramework Code First中的MissingMethodException错误

    在数据库初始化时运行OnModelCreating的方法中,有时会抛出MissingMethodException异常. 以下三步可解决大部份的出错场景: 在程序包管理器控制台中运行:Uninstal ...