com.xmobitea.changx.mini-localization 1.3.9 → 1.4.1
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.
- package/Editor/LocalizationComponentEditor.cs +66 -0
- package/Editor/{LocalizationComponentBaseEditor.cs.meta → LocalizationComponentEditor.cs.meta} +11 -11
- package/Editor/LocalizationComponentWindowsEditor.cs +49 -5
- package/Editor/LocalizationKeyDrawer.cs +121 -0
- package/Editor/{TMP_LocalizationComponentWindowsEditor.cs.meta → LocalizationKeyDrawer.cs.meta} +11 -11
- package/Editor/LocalizationManagerEditor.cs +57 -13
- package/Editor/LocalizationSettingsEditor.cs +22 -8
- package/Editor/TMP_LocalizationComponentEditor.cs +66 -0
- package/Editor/TMP_LocalizationComponentEditor.cs.meta +11 -0
- package/Editor/Tools/GetLocalizationTools/linux-x64/GetLocalization +0 -0
- package/Editor/Tools/GetLocalizationTools/{GetLocalization.deps.json.meta → linux-x64/GetLocalization.meta} +7 -7
- package/Editor/Tools/GetLocalizationTools/linux-x64/GetLocalization.pdb +0 -0
- package/Editor/Tools/GetLocalizationTools/{GetLocalization.runtimeconfig.dev.json.meta → linux-x64/GetLocalization.pdb.meta} +7 -7
- package/Editor/Tools/GetLocalizationTools/linux-x64.meta +8 -0
- package/Editor/Tools/GetLocalizationTools/osx-x64/GetLocalization +0 -0
- package/Editor/Tools/GetLocalizationTools/{GetLocalization.runtimeconfig.json.meta → osx-x64/GetLocalization.meta} +7 -7
- package/Editor/Tools/GetLocalizationTools/osx-x64/GetLocalization.pdb +0 -0
- package/Editor/Tools/GetLocalizationTools/osx-x64/GetLocalization.pdb.meta +7 -0
- package/Editor/Tools/GetLocalizationTools/osx-x64.meta +8 -0
- package/Editor/Tools/GetLocalizationTools/win-x64/GetLocalization.exe +0 -0
- package/Editor/Tools/GetLocalizationTools/{GetLocalization.exe.meta → win-x64/GetLocalization.exe.meta} +7 -7
- package/Editor/Tools/GetLocalizationTools/win-x64/GetLocalization.pdb +0 -0
- package/Editor/Tools/GetLocalizationTools/win-x64/GetLocalization.pdb.meta +7 -0
- package/Editor/Tools/GetLocalizationTools/win-x64.meta +8 -0
- package/Runtime/LocalizationComponent.cs +3 -0
- package/Runtime/LocalizationConstanceId.cs +5 -0
- package/Runtime/LocalizationConstanceId.cs.meta +11 -0
- package/Runtime/LocalizationSettings.cs +9 -0
- package/package.json +1 -1
- package/Editor/LocalizationComponentBaseEditor.cs +0 -20
- package/Editor/TMP_LocalizationComponentWindowsEditor.cs +0 -133
- package/Editor/Tools/GetLocalizationTools/GetLocalization.deps.json +0 -119
- package/Editor/Tools/GetLocalizationTools/GetLocalization.dll +0 -0
- package/Editor/Tools/GetLocalizationTools/GetLocalization.dll.meta +0 -92
- package/Editor/Tools/GetLocalizationTools/GetLocalization.exe +0 -0
- package/Editor/Tools/GetLocalizationTools/GetLocalization.runtimeconfig.dev.json +0 -8
- package/Editor/Tools/GetLocalizationTools/GetLocalization.runtimeconfig.json +0 -9
- package/Editor/Tools/GetLocalizationTools/Google.Apis.Auth.PlatformServices.dll +0 -0
- package/Editor/Tools/GetLocalizationTools/Google.Apis.Auth.PlatformServices.dll.meta +0 -47
- package/Editor/Tools/GetLocalizationTools/Google.Apis.Auth.dll +0 -0
- package/Editor/Tools/GetLocalizationTools/Google.Apis.Auth.dll.meta +0 -47
- package/Editor/Tools/GetLocalizationTools/Google.Apis.Core.dll +0 -0
- package/Editor/Tools/GetLocalizationTools/Google.Apis.Core.dll.meta +0 -47
- package/Editor/Tools/GetLocalizationTools/Google.Apis.Sheets.v4.dll +0 -0
- package/Editor/Tools/GetLocalizationTools/Google.Apis.Sheets.v4.dll.meta +0 -47
- package/Editor/Tools/GetLocalizationTools/Google.Apis.dll +0 -0
- package/Editor/Tools/GetLocalizationTools/Google.Apis.dll.meta +0 -47
- package/Editor/Tools/GetLocalizationTools/Newtonsoft.Json.dll +0 -0
- package/Editor/Tools/GetLocalizationTools/Newtonsoft.Json.dll.meta +0 -47
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid:
|
|
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:
|
|
Binary file
|
|
@@ -3,9 +3,12 @@
|
|
|
3
3
|
using UnityEngine;
|
|
4
4
|
using UnityEngine.UI;
|
|
5
5
|
|
|
6
|
+
public class LocalizationKeyAttribute : PropertyAttribute { }
|
|
7
|
+
|
|
6
8
|
[DisallowMultipleComponent]
|
|
7
9
|
public class LocalizationComponentBase : MonoBehaviour
|
|
8
10
|
{
|
|
11
|
+
[LocalizationKey]
|
|
9
12
|
[SerializeField]
|
|
10
13
|
protected string _key;
|
|
11
14
|
public string Key { get { return _key; } set { _key = value; } }
|
|
@@ -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,20 +0,0 @@
|
|
|
1
|
-
namespace XmobiTea.MiniLocalization.Editor
|
|
2
|
-
{
|
|
3
|
-
using UnityEngine;
|
|
4
|
-
using UnityEditor;
|
|
5
|
-
|
|
6
|
-
[CustomEditor(typeof(LocalizationComponentBase))]
|
|
7
|
-
public class LocalizationComponentBaseEditor : Editor
|
|
8
|
-
{
|
|
9
|
-
public override void OnInspectorGUI()
|
|
10
|
-
{
|
|
11
|
-
base.OnInspectorGUI();
|
|
12
|
-
|
|
13
|
-
if (GUILayout.Button("Reload Text"))
|
|
14
|
-
{
|
|
15
|
-
var localizationComponentBase = (LocalizationComponentBase)target;
|
|
16
|
-
localizationComponentBase.OnUpdateText();
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
}
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
namespace XmobiTea.MiniLocalization.Editor
|
|
2
|
-
{
|
|
3
|
-
using XmobiTea.MiniLocalization;
|
|
4
|
-
using UnityEditor;
|
|
5
|
-
|
|
6
|
-
using UnityEngine;
|
|
7
|
-
using TMPro;
|
|
8
|
-
|
|
9
|
-
public class TMP_LocalizationComponentWindowsEditor : EditorWindow
|
|
10
|
-
{
|
|
11
|
-
private TMP_Text[] textsInScene;
|
|
12
|
-
|
|
13
|
-
Vector2 scrollPos = new Vector2(0, 0);
|
|
14
|
-
GUIStyle grayTextColor = GUIStyle.none;
|
|
15
|
-
GameObject parentGO;
|
|
16
|
-
GameObject tempGO;
|
|
17
|
-
|
|
18
|
-
public static void ShowWindow()
|
|
19
|
-
{
|
|
20
|
-
//Show existing window instance. If one doesn't exist, make one.
|
|
21
|
-
EditorWindow.GetWindow(typeof(TMP_LocalizationComponentWindowsEditor));
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
private void OnEnable()
|
|
25
|
-
{
|
|
26
|
-
Refresh();
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
void Refresh()
|
|
30
|
-
{
|
|
31
|
-
if (parentGO)
|
|
32
|
-
{
|
|
33
|
-
textsInScene = parentGO.GetComponentsInChildren<TMP_Text>(true);
|
|
34
|
-
}
|
|
35
|
-
else
|
|
36
|
-
{
|
|
37
|
-
textsInScene = new TMP_Text[0];
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
void OnGUI()
|
|
42
|
-
{
|
|
43
|
-
grayTextColor = new GUIStyle(GUI.skin.button);
|
|
44
|
-
grayTextColor.normal.textColor = Color.gray;
|
|
45
|
-
|
|
46
|
-
if (GUILayout.Button("Refresh")) Refresh();
|
|
47
|
-
//currentTab = GUILayout.Toolbar(currentTab, new string[] { "Text", "TMP" });
|
|
48
|
-
GUILayout.Label("Parent");
|
|
49
|
-
parentGO = (GameObject)EditorGUILayout.ObjectField(parentGO, typeof(GameObject), true);
|
|
50
|
-
if (tempGO != parentGO)
|
|
51
|
-
{
|
|
52
|
-
tempGO = parentGO;
|
|
53
|
-
Refresh();
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
scrollPos = GUILayout.BeginScrollView(scrollPos, false, true, GUILayout.Width(position.width), GUILayout.Height(position.height - 20));
|
|
57
|
-
GUILayout.BeginVertical();
|
|
58
|
-
|
|
59
|
-
var maxWidth = position.width;
|
|
60
|
-
if (maxWidth > 500) maxWidth = 500;
|
|
61
|
-
|
|
62
|
-
for (var i = 0; i < textsInScene.Length; i++)
|
|
63
|
-
{
|
|
64
|
-
var text = textsInScene[i];
|
|
65
|
-
if (text)
|
|
66
|
-
{
|
|
67
|
-
GUILayout.BeginHorizontal();
|
|
68
|
-
|
|
69
|
-
if (!text.gameObject.activeInHierarchy)
|
|
70
|
-
{
|
|
71
|
-
if (GUILayout.Button(text.name, grayTextColor, GUILayout.Width(maxWidth * 2 / 5)))
|
|
72
|
-
{
|
|
73
|
-
Selection.objects = new Object[] { text.gameObject };
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
else
|
|
77
|
-
{
|
|
78
|
-
if (GUILayout.Button(text.name, GUILayout.Width(maxWidth * 2 / 5)))
|
|
79
|
-
{
|
|
80
|
-
Selection.objects = new Object[] { text.gameObject };
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
var localizationComponent = text.GetComponent<TMP_LocalizationComponent>();
|
|
85
|
-
if (localizationComponent)
|
|
86
|
-
{
|
|
87
|
-
localizationComponent.Key = GUILayout.TextField(localizationComponent.Key, GUILayout.Width(maxWidth * 2 / 5));
|
|
88
|
-
|
|
89
|
-
if (GUILayout.Button("Remove", GUILayout.Width(maxWidth / 5)))
|
|
90
|
-
{
|
|
91
|
-
DestroyImmediate(localizationComponent, true);
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
else
|
|
95
|
-
{
|
|
96
|
-
if (GUILayout.Button("Add LocalizationComponent", GUILayout.Width(maxWidth * 2 / 5)))
|
|
97
|
-
{
|
|
98
|
-
localizationComponent = text.gameObject.AddComponent<TMP_LocalizationComponent>();
|
|
99
|
-
Selection.objects = new Object[] { text.gameObject };
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
//if (GUI.Button(new Rect() { x = 0, y = 20 + 20 * i, width = 250, height = 20 }, text.name))
|
|
104
|
-
//{
|
|
105
|
-
// Selection.objects = new Object[] { text.gameObject };
|
|
106
|
-
//}
|
|
107
|
-
|
|
108
|
-
//var localizationComponent = text.GetComponent<LocalizationComponent>();
|
|
109
|
-
//if (localizationComponent)
|
|
110
|
-
//{
|
|
111
|
-
// localizationComponent.Key = GUI.TextField(new Rect() { x = 300, y = 20 + 20 * i, width = 250, height = 20 }, localizationComponent.Key);
|
|
112
|
-
//}
|
|
113
|
-
|
|
114
|
-
GUILayout.EndHorizontal();
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
GUILayout.Space(5);
|
|
119
|
-
GUILayout.EndVertical();
|
|
120
|
-
GUILayout.EndScrollView();
|
|
121
|
-
|
|
122
|
-
//GUILayout.Label("Base Settings", EditorStyles.boldLabel);
|
|
123
|
-
//myString = EditorGUILayout.TextField("Text Field", myString);
|
|
124
|
-
|
|
125
|
-
//groupEnabled = EditorGUILayout.BeginToggleGroup("Optional Settings", groupEnabled);
|
|
126
|
-
//myBool = EditorGUILayout.Toggle("Toggle", myBool);
|
|
127
|
-
//myFloat = EditorGUILayout.Slider("Slider", myFloat, -3, 3);
|
|
128
|
-
//EditorGUILayout.EndToggleGroup();
|
|
129
|
-
|
|
130
|
-
Repaint();
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
}
|
|
@@ -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
|
-
}
|
|
Binary file
|
|
@@ -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:
|
|
Binary file
|
|
Binary file
|
|
@@ -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:
|
|
Binary file
|
|
@@ -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:
|
|
Binary file
|
|
@@ -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:
|
|
Binary file
|