com.xmobitea.changx.mini-localization 1.3.9 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/Editor/LocalizationManagerEditor.cs +25 -3
  2. package/Editor/LocalizationSettingsEditor.cs +18 -3
  3. package/Editor/Tools/GetLocalizationTools/linux-x64/GetLocalization +0 -0
  4. package/Editor/Tools/GetLocalizationTools/{GetLocalization.deps.json.meta → linux-x64/GetLocalization.meta} +7 -7
  5. package/Editor/Tools/GetLocalizationTools/linux-x64/GetLocalization.pdb +0 -0
  6. package/Editor/Tools/GetLocalizationTools/{GetLocalization.runtimeconfig.dev.json.meta → linux-x64/GetLocalization.pdb.meta} +7 -7
  7. package/Editor/Tools/GetLocalizationTools/linux-x64.meta +8 -0
  8. package/Editor/Tools/GetLocalizationTools/osx-x64/GetLocalization +0 -0
  9. package/Editor/Tools/GetLocalizationTools/{GetLocalization.runtimeconfig.json.meta → osx-x64/GetLocalization.meta} +7 -7
  10. package/Editor/Tools/GetLocalizationTools/osx-x64/GetLocalization.pdb +0 -0
  11. package/Editor/Tools/GetLocalizationTools/osx-x64/GetLocalization.pdb.meta +7 -0
  12. package/Editor/Tools/GetLocalizationTools/osx-x64.meta +8 -0
  13. package/Editor/Tools/GetLocalizationTools/win-x64/GetLocalization.exe +0 -0
  14. package/Editor/Tools/GetLocalizationTools/{GetLocalization.exe.meta → win-x64/GetLocalization.exe.meta} +7 -7
  15. package/Editor/Tools/GetLocalizationTools/win-x64/GetLocalization.pdb +0 -0
  16. package/Editor/Tools/GetLocalizationTools/win-x64/GetLocalization.pdb.meta +7 -0
  17. package/Editor/Tools/GetLocalizationTools/win-x64.meta +8 -0
  18. package/Runtime/LocalizationSettings.cs +9 -0
  19. package/package.json +1 -1
  20. package/Editor/Tools/GetLocalizationTools/GetLocalization.deps.json +0 -119
  21. package/Editor/Tools/GetLocalizationTools/GetLocalization.dll +0 -0
  22. package/Editor/Tools/GetLocalizationTools/GetLocalization.dll.meta +0 -92
  23. package/Editor/Tools/GetLocalizationTools/GetLocalization.exe +0 -0
  24. package/Editor/Tools/GetLocalizationTools/GetLocalization.runtimeconfig.dev.json +0 -8
  25. package/Editor/Tools/GetLocalizationTools/GetLocalization.runtimeconfig.json +0 -9
  26. package/Editor/Tools/GetLocalizationTools/Google.Apis.Auth.PlatformServices.dll +0 -0
  27. package/Editor/Tools/GetLocalizationTools/Google.Apis.Auth.PlatformServices.dll.meta +0 -47
  28. package/Editor/Tools/GetLocalizationTools/Google.Apis.Auth.dll +0 -0
  29. package/Editor/Tools/GetLocalizationTools/Google.Apis.Auth.dll.meta +0 -47
  30. package/Editor/Tools/GetLocalizationTools/Google.Apis.Core.dll +0 -0
  31. package/Editor/Tools/GetLocalizationTools/Google.Apis.Core.dll.meta +0 -47
  32. package/Editor/Tools/GetLocalizationTools/Google.Apis.Sheets.v4.dll +0 -0
  33. package/Editor/Tools/GetLocalizationTools/Google.Apis.Sheets.v4.dll.meta +0 -47
  34. package/Editor/Tools/GetLocalizationTools/Google.Apis.dll +0 -0
  35. package/Editor/Tools/GetLocalizationTools/Google.Apis.dll.meta +0 -47
  36. package/Editor/Tools/GetLocalizationTools/Newtonsoft.Json.dll +0 -0
  37. package/Editor/Tools/GetLocalizationTools/Newtonsoft.Json.dll.meta +0 -47
@@ -10,9 +10,9 @@
10
10
  [CustomEditor(typeof(LocalizationManager))]
11
11
  public class LocalizationManagerEditor : Editor
12
12
  {
13
- private const string Version = "1.3.9";
13
+ private const string Version = "1.4.0";
14
14
  private const string Library = @".\Library\PackageCache\com.xmobitea.changx.mini-localization@" + Version;
15
- private const string ProcessPath = @"\Editor\Tools\GetLocalizationTools\GetLocalization.exe";
15
+ private const string ProcessPath = @"\Editor\Tools\GetLocalizationTools";
16
16
  private const string CredentialsPath = @"\Editor\Tools\GetLocalizationTools\credentials.json";
17
17
 
18
18
  public override void OnInspectorGUI()
@@ -72,9 +72,31 @@
72
72
  if (!usingFetchLocalLocalization && !usingFetchOnlineLocalization) return;
73
73
 
74
74
  var processPath = Library + ProcessPath;
75
+
76
+ var filePath123 = "GetLocalization";
77
+ var folderPath = "";
78
+ var platform = Application.platform;
79
+ if (platform == RuntimePlatform.WindowsEditor || platform == RuntimePlatform.WindowsPlayer || platform == RuntimePlatform.WindowsServer)
80
+ {
81
+ folderPath = "win-x64";
82
+ filePath123 += ".exe";
83
+ }
84
+ else if (platform == RuntimePlatform.OSXEditor || platform == RuntimePlatform.OSXPlayer || platform == RuntimePlatform.OSXServer)
85
+ {
86
+ folderPath = "osx-x64";
87
+ }
88
+ else
89
+ {
90
+ folderPath = "linux-x64";
91
+ }
92
+
93
+ processPath += "\\" + folderPath + "\\" + filePath123;
94
+
95
+ Debug.LogError(Application.dataPath);
96
+
75
97
  var credentialsPath = Library + CredentialsPath;
76
98
 
77
- var arguments = credentialsPath + " " + worksheetKey + (usingFetchLocalLocalization ? " true " : " false ") + (usingFetchOnlineLocalization ? "true" : "false");
99
+ var arguments = credentialsPath + " " + worksheetKey + (usingFetchLocalLocalization ? " true " : " false ") + (usingFetchOnlineLocalization ? "true " : "false ") + (string.IsNullOrEmpty(localizationSettings.SheetnameFetchLocalLocalization) ? "local" : localizationSettings.SheetnameFetchLocalLocalization) + " " + (string.IsNullOrEmpty(localizationSettings.SheetnameFetchOnlineLocalization) ? "online" : localizationSettings.SheetnameFetchOnlineLocalization);
78
100
 
79
101
  var localizationLanguageItems = localizationSettings.LocalizationLanguageItems;
80
102
 
@@ -14,7 +14,9 @@ namespace XmobiTea.MiniLocalization.Editor
14
14
  SerializedProperty localizationLanguageItemsProp;
15
15
  SerializedProperty worksheetKeyProp;
16
16
  SerializedProperty usingFetchLocalLocalizationProp;
17
+ SerializedProperty sheetNameFetchLocalLocalizationProp;
17
18
  SerializedProperty usingFetchOnlineLocalizationProp;
19
+ SerializedProperty sheetNameFetchOnlineLocalizationProp;
18
20
 
19
21
  private void OnEnable()
20
22
  {
@@ -23,7 +25,9 @@ namespace XmobiTea.MiniLocalization.Editor
23
25
  localizationLanguageItemsSize = localizationLanguageItemsProp.arraySize;
24
26
 
25
27
  usingFetchLocalLocalizationProp = serializedObject.FindProperty("usingFetchLocalLocalization");
28
+ sheetNameFetchLocalLocalizationProp = serializedObject.FindProperty("sheetNameFetchLocalLocalization");
26
29
  usingFetchOnlineLocalizationProp = serializedObject.FindProperty("usingFetchOnlineLocalization");
30
+ sheetNameFetchOnlineLocalizationProp = serializedObject.FindProperty("sheetNameFetchOnlineLocalization");
27
31
  }
28
32
 
29
33
  public override void OnInspectorGUI()
@@ -47,16 +51,27 @@ namespace XmobiTea.MiniLocalization.Editor
47
51
  EditorGUILayout.Space(20);
48
52
 
49
53
  EditorGUILayout.PropertyField(usingFetchLocalLocalizationProp);
50
- if (usingFetchLocalLocalizationProp.boolValue) EditorGUILayout.LabelField("The tab in wordsheet must is XmobiTea-Local-Localization");
54
+ if (usingFetchLocalLocalizationProp.boolValue)
55
+ {
56
+ EditorGUILayout.PropertyField(sheetNameFetchLocalLocalizationProp);
57
+
58
+ if (string.IsNullOrEmpty(sheetNameFetchLocalLocalizationProp.stringValue))
59
+ EditorGUILayout.LabelField("The sheet name in wordsheet must is not null and not contains spacebar characters.");
60
+ }
51
61
 
52
62
  EditorGUILayout.PropertyField(usingFetchOnlineLocalizationProp);
53
- if (usingFetchOnlineLocalizationProp.boolValue) EditorGUILayout.LabelField("The tab in wordsheet must is XmobiTea-Online-Localization");
63
+ if (usingFetchOnlineLocalizationProp.boolValue)
64
+ {
65
+ EditorGUILayout.PropertyField(sheetNameFetchOnlineLocalizationProp);
66
+ if (string.IsNullOrEmpty(sheetNameFetchOnlineLocalizationProp.stringValue))
67
+ EditorGUILayout.LabelField("The sheet name in wordsheet must is not null and not contains spacebar characters.");
68
+ }
54
69
 
55
70
  if (usingFetchLocalLocalizationProp.boolValue || usingFetchOnlineLocalizationProp.boolValue)
56
71
  {
57
72
  EditorGUILayout.PropertyField(worksheetKeyProp);
58
73
 
59
- EditorGUILayout.LabelField("The column must start at C1: Key " + string.Join(" ", stringArgs));
74
+ EditorGUILayout.LabelField("The column must start at A1: Key " + string.Join(" ", stringArgs));
60
75
  }
61
76
 
62
77
  if (serializedObject.hasModifiedProperties) serializedObject.ApplyModifiedProperties();
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: c80da9eea19ed984d9081387fde72adf
3
- TextScriptImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 7ae72a5d49f00b74d9f3bf38d3da3076
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: fdc39b4ddef12dc45afc7dad0e6b5539
3
- TextScriptImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 51ee6a61c4b2e81498ff995e7ef42aa8
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 7d06c03dd392877489ecb75f3130eba4
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: 2fb9e2d36e2b5174fa9925bfdfbeab26
3
- TextScriptImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 9dbff6f03e9e39347b2ffe90bd74c63f
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: 2ab4b2d5d7d41094ba11dd2559be72b5
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: aa710d67c22b740489d440f5943ba8c9
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: 0a22adabaeaa0344080d6e9b9fbc42ec
3
- DefaultImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: e319706edf896e745a508a8dae687444
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: dd46034cda2ff664ab2c6d6b2e24278d
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 680e627246fbc2c4cb75b6fc20a7ef0c
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -20,8 +20,17 @@ namespace XmobiTea.MiniLocalization
20
20
  private bool usingFetchLocalLocalization;
21
21
  public bool UsingFetchLocalLocalization => usingFetchLocalLocalization;
22
22
 
23
+ [SerializeField]
24
+ private string sheetNameFetchLocalLocalization;
25
+ public string SheetnameFetchLocalLocalization => sheetNameFetchLocalLocalization;
26
+
23
27
  [SerializeField]
24
28
  private bool usingFetchOnlineLocalization;
25
29
  public bool UsingFetchOnlineLocalization => usingFetchOnlineLocalization;
30
+
31
+ [SerializeField]
32
+ private string sheetNameFetchOnlineLocalization;
33
+ public string SheetnameFetchOnlineLocalization => sheetNameFetchOnlineLocalization;
34
+
26
35
  }
27
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.xmobitea.changx.mini-localization",
3
- "version": "1.3.9",
3
+ "version": "1.4.0",
4
4
  "displayName": "XmobiTea Localization",
5
5
  "description": "XmobiTea Unity package",
6
6
  "unity": "2020.3",
@@ -1,119 +0,0 @@
1
- {
2
- "runtimeTarget": {
3
- "name": ".NETCoreApp,Version=v3.1",
4
- "signature": ""
5
- },
6
- "compilationOptions": {},
7
- "targets": {
8
- ".NETCoreApp,Version=v3.1": {
9
- "GetLocalization/1.0.0": {
10
- "dependencies": {
11
- "Google.Apis.Sheets.v4": "1.49.0.2175"
12
- },
13
- "runtime": {
14
- "GetLocalization.dll": {}
15
- }
16
- },
17
- "Google.Apis/1.49.0": {
18
- "dependencies": {
19
- "Google.Apis.Core": "1.49.0"
20
- },
21
- "runtime": {
22
- "lib/netstandard2.0/Google.Apis.dll": {
23
- "assemblyVersion": "1.49.0.0",
24
- "fileVersion": "1.49.0.0"
25
- }
26
- }
27
- },
28
- "Google.Apis.Auth/1.49.0": {
29
- "dependencies": {
30
- "Google.Apis": "1.49.0",
31
- "Google.Apis.Core": "1.49.0"
32
- },
33
- "runtime": {
34
- "lib/netstandard2.0/Google.Apis.Auth.PlatformServices.dll": {
35
- "assemblyVersion": "1.49.0.0",
36
- "fileVersion": "1.49.0.0"
37
- },
38
- "lib/netstandard2.0/Google.Apis.Auth.dll": {
39
- "assemblyVersion": "1.49.0.0",
40
- "fileVersion": "1.49.0.0"
41
- }
42
- }
43
- },
44
- "Google.Apis.Core/1.49.0": {
45
- "dependencies": {
46
- "Newtonsoft.Json": "12.0.3"
47
- },
48
- "runtime": {
49
- "lib/netstandard2.0/Google.Apis.Core.dll": {
50
- "assemblyVersion": "1.49.0.0",
51
- "fileVersion": "1.49.0.0"
52
- }
53
- }
54
- },
55
- "Google.Apis.Sheets.v4/1.49.0.2175": {
56
- "dependencies": {
57
- "Google.Apis": "1.49.0",
58
- "Google.Apis.Auth": "1.49.0"
59
- },
60
- "runtime": {
61
- "lib/netstandard2.0/Google.Apis.Sheets.v4.dll": {
62
- "assemblyVersion": "1.49.0.2175",
63
- "fileVersion": "1.49.0.2175"
64
- }
65
- }
66
- },
67
- "Newtonsoft.Json/12.0.3": {
68
- "runtime": {
69
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
70
- "assemblyVersion": "12.0.0.0",
71
- "fileVersion": "12.0.3.23909"
72
- }
73
- }
74
- }
75
- }
76
- },
77
- "libraries": {
78
- "GetLocalization/1.0.0": {
79
- "type": "project",
80
- "serviceable": false,
81
- "sha512": ""
82
- },
83
- "Google.Apis/1.49.0": {
84
- "type": "package",
85
- "serviceable": true,
86
- "sha512": "sha512-fmXQQTxZFOBlnvokvdQMzq0Lt+g2QzpZ4H6U8lMMFHgAR8ZqxQnPN5yHDpoHf7a++hJHb5W3pALxauGsq+afKQ==",
87
- "path": "google.apis/1.49.0",
88
- "hashPath": "google.apis.1.49.0.nupkg.sha512"
89
- },
90
- "Google.Apis.Auth/1.49.0": {
91
- "type": "package",
92
- "serviceable": true,
93
- "sha512": "sha512-3V9ohvixQtjaEvk7T9Ac7E/KvwEPa7eL4aMNreJDI0CEPzCdQdk2zCvaJPRrNIjhe+UuBeOeom1oAOMFB74JHg==",
94
- "path": "google.apis.auth/1.49.0",
95
- "hashPath": "google.apis.auth.1.49.0.nupkg.sha512"
96
- },
97
- "Google.Apis.Core/1.49.0": {
98
- "type": "package",
99
- "serviceable": true,
100
- "sha512": "sha512-9DgGdtyzgrCfHWwc/HiDXDbykNMeKQozbEHYEUEcezRuH+YR3fvq7YGVBDmUM8g6qEL3kDk6h5EU4h0IJwue1w==",
101
- "path": "google.apis.core/1.49.0",
102
- "hashPath": "google.apis.core.1.49.0.nupkg.sha512"
103
- },
104
- "Google.Apis.Sheets.v4/1.49.0.2175": {
105
- "type": "package",
106
- "serviceable": true,
107
- "sha512": "sha512-WRlPWJ+gE8PB4LlzxbVJt5JiP1bMML7uqjYcOId9eAYiGSLpVS6bfCZkSijnbSObNhsUyQ/JN5ai9SKlLQFMTQ==",
108
- "path": "google.apis.sheets.v4/1.49.0.2175",
109
- "hashPath": "google.apis.sheets.v4.1.49.0.2175.nupkg.sha512"
110
- },
111
- "Newtonsoft.Json/12.0.3": {
112
- "type": "package",
113
- "serviceable": true,
114
- "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
115
- "path": "newtonsoft.json/12.0.3",
116
- "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
117
- }
118
- }
119
- }
@@ -1,92 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: 97faa7b455f862041a77b82161e4a9e5
3
- PluginImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- iconMap: {}
7
- executionOrder: {}
8
- defineConstraints: []
9
- isPreloaded: 0
10
- isOverridable: 0
11
- isExplicitlyReferenced: 1
12
- validateReferences: 0
13
- platformData:
14
- - first:
15
- : Any
16
- second:
17
- enabled: 0
18
- settings:
19
- Exclude Android: 1
20
- Exclude Editor: 1
21
- Exclude Linux64: 1
22
- Exclude OSXUniversal: 1
23
- Exclude WebGL: 1
24
- Exclude Win: 1
25
- Exclude Win64: 1
26
- Exclude WindowsStoreApps: 1
27
- Exclude iOS: 1
28
- - first:
29
- Android: Android
30
- second:
31
- enabled: 0
32
- settings:
33
- CPU: ARMv7
34
- - first:
35
- Any:
36
- second:
37
- enabled: 0
38
- settings: {}
39
- - first:
40
- Editor: Editor
41
- second:
42
- enabled: 0
43
- settings:
44
- CPU: AnyCPU
45
- DefaultValueInitialized: true
46
- OS: AnyOS
47
- - first:
48
- Standalone: Linux64
49
- second:
50
- enabled: 0
51
- settings:
52
- CPU: AnyCPU
53
- - first:
54
- Standalone: OSXUniversal
55
- second:
56
- enabled: 0
57
- settings:
58
- CPU: x86_64
59
- - first:
60
- Standalone: Win
61
- second:
62
- enabled: 0
63
- settings:
64
- CPU: x86
65
- - first:
66
- Standalone: Win64
67
- second:
68
- enabled: 0
69
- settings:
70
- CPU: x86_64
71
- - first:
72
- Windows Store Apps: WindowsStoreApps
73
- second:
74
- enabled: 0
75
- settings:
76
- CPU: AnyCPU
77
- DontProcess: false
78
- PlaceholderPath:
79
- SDK: AnySDK
80
- ScriptingBackend: AnyScriptingBackend
81
- - first:
82
- iPhone: iOS
83
- second:
84
- enabled: 0
85
- settings:
86
- AddToEmbeddedBinaries: false
87
- CPU: AnyCPU
88
- CompileFlags:
89
- FrameworkDependencies:
90
- userData:
91
- assetBundleName:
92
- assetBundleVariant:
@@ -1,8 +0,0 @@
1
- {
2
- "runtimeOptions": {
3
- "additionalProbingPaths": [
4
- "C:\\Users\\Admin\\.dotnet\\store\\|arch|\\|tfm|",
5
- "C:\\Users\\Admin\\.nuget\\packages"
6
- ]
7
- }
8
- }
@@ -1,9 +0,0 @@
1
- {
2
- "runtimeOptions": {
3
- "tfm": "netcoreapp3.1",
4
- "framework": {
5
- "name": "Microsoft.NETCore.App",
6
- "version": "3.1.0"
7
- }
8
- }
9
- }
@@ -1,47 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: 2cd0cb242e219d74084a20ec873aa640
3
- PluginImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- iconMap: {}
7
- executionOrder: {}
8
- defineConstraints: []
9
- isPreloaded: 0
10
- isOverridable: 0
11
- isExplicitlyReferenced: 1
12
- validateReferences: 0
13
- platformData:
14
- - first:
15
- : Any
16
- second:
17
- enabled: 0
18
- settings:
19
- Exclude Android: 1
20
- Exclude Editor: 1
21
- Exclude Linux64: 1
22
- Exclude OSXUniversal: 1
23
- Exclude WebGL: 1
24
- Exclude Win: 1
25
- Exclude Win64: 1
26
- Exclude WindowsStoreApps: 1
27
- Exclude iOS: 1
28
- - first:
29
- Any:
30
- second:
31
- enabled: 0
32
- settings: {}
33
- - first:
34
- Editor: Editor
35
- second:
36
- enabled: 0
37
- settings:
38
- DefaultValueInitialized: true
39
- - first:
40
- Windows Store Apps: WindowsStoreApps
41
- second:
42
- enabled: 0
43
- settings:
44
- CPU: AnyCPU
45
- userData:
46
- assetBundleName:
47
- assetBundleVariant:
@@ -1,47 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: 1673bc2917a8af44786d6fbebef38ffa
3
- PluginImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- iconMap: {}
7
- executionOrder: {}
8
- defineConstraints: []
9
- isPreloaded: 0
10
- isOverridable: 0
11
- isExplicitlyReferenced: 1
12
- validateReferences: 0
13
- platformData:
14
- - first:
15
- : Any
16
- second:
17
- enabled: 0
18
- settings:
19
- Exclude Android: 1
20
- Exclude Editor: 1
21
- Exclude Linux64: 1
22
- Exclude OSXUniversal: 1
23
- Exclude WebGL: 1
24
- Exclude Win: 1
25
- Exclude Win64: 1
26
- Exclude WindowsStoreApps: 1
27
- Exclude iOS: 1
28
- - first:
29
- Any:
30
- second:
31
- enabled: 0
32
- settings: {}
33
- - first:
34
- Editor: Editor
35
- second:
36
- enabled: 0
37
- settings:
38
- DefaultValueInitialized: true
39
- - first:
40
- Windows Store Apps: WindowsStoreApps
41
- second:
42
- enabled: 0
43
- settings:
44
- CPU: AnyCPU
45
- userData:
46
- assetBundleName:
47
- assetBundleVariant:
@@ -1,47 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: 0e74368bac05ed243bb08352609fb6e2
3
- PluginImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- iconMap: {}
7
- executionOrder: {}
8
- defineConstraints: []
9
- isPreloaded: 0
10
- isOverridable: 0
11
- isExplicitlyReferenced: 1
12
- validateReferences: 0
13
- platformData:
14
- - first:
15
- : Any
16
- second:
17
- enabled: 0
18
- settings:
19
- Exclude Android: 1
20
- Exclude Editor: 1
21
- Exclude Linux64: 1
22
- Exclude OSXUniversal: 1
23
- Exclude WebGL: 1
24
- Exclude Win: 1
25
- Exclude Win64: 1
26
- Exclude WindowsStoreApps: 1
27
- Exclude iOS: 1
28
- - first:
29
- Any:
30
- second:
31
- enabled: 0
32
- settings: {}
33
- - first:
34
- Editor: Editor
35
- second:
36
- enabled: 0
37
- settings:
38
- DefaultValueInitialized: true
39
- - first:
40
- Windows Store Apps: WindowsStoreApps
41
- second:
42
- enabled: 0
43
- settings:
44
- CPU: AnyCPU
45
- userData:
46
- assetBundleName:
47
- assetBundleVariant:
@@ -1,47 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: d62fba7c04c2fa14eac1746fd54df6eb
3
- PluginImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- iconMap: {}
7
- executionOrder: {}
8
- defineConstraints: []
9
- isPreloaded: 0
10
- isOverridable: 0
11
- isExplicitlyReferenced: 1
12
- validateReferences: 0
13
- platformData:
14
- - first:
15
- : Any
16
- second:
17
- enabled: 0
18
- settings:
19
- Exclude Android: 1
20
- Exclude Editor: 1
21
- Exclude Linux64: 1
22
- Exclude OSXUniversal: 1
23
- Exclude WebGL: 1
24
- Exclude Win: 1
25
- Exclude Win64: 1
26
- Exclude WindowsStoreApps: 1
27
- Exclude iOS: 1
28
- - first:
29
- Any:
30
- second:
31
- enabled: 0
32
- settings: {}
33
- - first:
34
- Editor: Editor
35
- second:
36
- enabled: 0
37
- settings:
38
- DefaultValueInitialized: true
39
- - first:
40
- Windows Store Apps: WindowsStoreApps
41
- second:
42
- enabled: 0
43
- settings:
44
- CPU: AnyCPU
45
- userData:
46
- assetBundleName:
47
- assetBundleVariant:
@@ -1,47 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: 13210e23d9b652342aa28e43e190e83c
3
- PluginImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- iconMap: {}
7
- executionOrder: {}
8
- defineConstraints: []
9
- isPreloaded: 0
10
- isOverridable: 0
11
- isExplicitlyReferenced: 1
12
- validateReferences: 0
13
- platformData:
14
- - first:
15
- : Any
16
- second:
17
- enabled: 0
18
- settings:
19
- Exclude Android: 1
20
- Exclude Editor: 1
21
- Exclude Linux64: 1
22
- Exclude OSXUniversal: 1
23
- Exclude WebGL: 1
24
- Exclude Win: 1
25
- Exclude Win64: 1
26
- Exclude WindowsStoreApps: 1
27
- Exclude iOS: 1
28
- - first:
29
- Any:
30
- second:
31
- enabled: 0
32
- settings: {}
33
- - first:
34
- Editor: Editor
35
- second:
36
- enabled: 0
37
- settings:
38
- DefaultValueInitialized: true
39
- - first:
40
- Windows Store Apps: WindowsStoreApps
41
- second:
42
- enabled: 0
43
- settings:
44
- CPU: AnyCPU
45
- userData:
46
- assetBundleName:
47
- assetBundleVariant:
@@ -1,47 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: 85ca9c1ecc714da4eb6c353cd931f75c
3
- PluginImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- iconMap: {}
7
- executionOrder: {}
8
- defineConstraints: []
9
- isPreloaded: 0
10
- isOverridable: 0
11
- isExplicitlyReferenced: 1
12
- validateReferences: 0
13
- platformData:
14
- - first:
15
- : Any
16
- second:
17
- enabled: 0
18
- settings:
19
- Exclude Android: 1
20
- Exclude Editor: 1
21
- Exclude Linux64: 1
22
- Exclude OSXUniversal: 1
23
- Exclude WebGL: 1
24
- Exclude Win: 1
25
- Exclude Win64: 1
26
- Exclude WindowsStoreApps: 1
27
- Exclude iOS: 1
28
- - first:
29
- Any:
30
- second:
31
- enabled: 0
32
- settings: {}
33
- - first:
34
- Editor: Editor
35
- second:
36
- enabled: 0
37
- settings:
38
- DefaultValueInitialized: true
39
- - first:
40
- Windows Store Apps: WindowsStoreApps
41
- second:
42
- enabled: 0
43
- settings:
44
- CPU: AnyCPU
45
- userData:
46
- assetBundleName:
47
- assetBundleVariant: