@@ -7,26 +7,26 @@ namespace UnityEditor.Formats.Fbx.Exporter
7
7
{
8
8
public class RepairMissingScripts
9
9
{
10
- private const string m_forumPackageGUID = "2d81c55c4d9d85146b1d2de96e084b63" ;
11
- private const string m_assetStorePackageGUID = "628ffbda3fdf4df4588770785d91a698" ;
10
+ private const string ForumPackageGUID = "2d81c55c4d9d85146b1d2de96e084b63" ;
11
+ private const string AssetStorePackageGUID = "628ffbda3fdf4df4588770785d91a698" ;
12
12
13
- private const string m_fbxPrefabDLLFileId = "69888640" ;
13
+ private const string FbxPrefabDLLFileId = "69888640" ;
14
14
15
- private const string m_idFormat = "{{fileID: {0}, guid: {1}, type:" ;
15
+ private const string IdFormat = "{{fileID: {0}, guid: {1}, type:" ;
16
16
17
- private static List < string > m_searchIDsToReplace ;
17
+ private static List < string > s_searchIDsToReplace ;
18
18
private static List < string > SearchIDsToReplace
19
19
{
20
20
get
21
21
{
22
- if ( m_searchIDsToReplace == null || m_searchIDsToReplace . Count <= 0 )
22
+ if ( s_searchIDsToReplace == null || s_searchIDsToReplace . Count <= 0 )
23
23
{
24
- m_searchIDsToReplace = new List < string > ( ) {
25
- string . Format ( m_idFormat , m_fbxPrefabDLLFileId , m_forumPackageGUID ) ,
26
- string . Format ( m_idFormat , m_fbxPrefabDLLFileId , m_assetStorePackageGUID )
24
+ s_searchIDsToReplace = new List < string > ( ) {
25
+ string . Format ( IdFormat , FbxPrefabDLLFileId , ForumPackageGUID ) ,
26
+ string . Format ( IdFormat , FbxPrefabDLLFileId , AssetStorePackageGUID )
27
27
} ;
28
28
}
29
- return m_searchIDsToReplace ;
29
+ return s_searchIDsToReplace ;
30
30
}
31
31
}
32
32
@@ -52,7 +52,7 @@ public static string GetSourceCodeSearchID()
52
52
#endif
53
53
if ( AssetDatabase . TryGetGUIDAndLocalFileIdentifier ( fbxPrefabObj , out guid , out fileId ) )
54
54
{
55
- searchID = string . Format ( m_idFormat , fileId , guid ) ;
55
+ searchID = string . Format ( IdFormat , fileId , guid ) ;
56
56
}
57
57
return searchID ;
58
58
}
0 commit comments