Skip to content
This repository was archived by the owner on Oct 17, 2020. It is now read-only.

Commit 041f164

Browse files
authored
Merge pull request #41 from PlayFab/master
Release 0.0.992
2 parents e97619c + 5110903 commit 041f164

File tree

70 files changed

+4636
-132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+4636
-132
lines changed
2.42 KB
Binary file not shown.

Source/Assets/NewBehaviourScript.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using UnityEngine;
2+
using System.Collections;
3+
4+
public class NewBehaviourScript : MonoBehaviour {
5+
6+
// Use this for initialization
7+
void Start () {
8+
9+
}
10+
11+
// Update is called once per frame
12+
void Update () {
13+
14+
}
15+
}

Source/Assets/NewBehaviourScript.cs.meta

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/Assets/PlayFabEditorExtensions/Editor/Scripts/Components/TitleDataEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ void OnGUI () {
4040

4141
EditorGUILayout.BeginHorizontal(PlayFabEditorHelper.uiStyle.GetStyle("gpStyleClear"));
4242
GUILayout.FlexibleSpace();
43-
if(GUILayout.Button("Save", PlayFabEditorHelper.uiStyle.GetStyle("Button"), GUILayout.MaxWidth(200)))
43+
if(GUILayout.Button("SAVE", PlayFabEditorHelper.uiStyle.GetStyle("Button"), GUILayout.MaxWidth(200)))
4444
{
4545
for(int z = 0; z < PlayFabEditorDataMenu.tdViewer.items.Count; z++)
4646
{

Source/Assets/PlayFabEditorExtensions/Editor/Scripts/Components/TitleDataViewer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void Draw()
7070
EditorGUILayout.LabelField(":", GUILayout.MaxWidth(10));
7171
GUILayout.Label(""+items[z].Value, valStyle, GUILayout.MaxWidth(valueInputBoxWidth), GUILayout.MaxHeight(25));
7272

73-
if(GUILayout.Button("Edit", PlayFabEditorHelper.uiStyle.GetStyle("Button"), GUILayout.MaxHeight(19), GUILayout.MinWidth(35)))
73+
if(GUILayout.Button("EDIT", PlayFabEditorHelper.uiStyle.GetStyle("Button"), GUILayout.MaxHeight(19), GUILayout.MinWidth(35)))
7474
{
7575
tdEditor.LoadData(items[z].Key, items[z].Value);
7676
TitleDataEditor.ShowWindow(tdEditor);

Source/Assets/PlayFabEditorExtensions/Editor/Scripts/Components/TitleInternalDataViewer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void Draw()
6767
EditorGUILayout.LabelField(":", GUILayout.MaxWidth(10));
6868
GUILayout.Label(""+items[z].Value, valStyle, GUILayout.MaxWidth(valueInputBoxWidth), GUILayout.MaxHeight(25));
6969

70-
if(GUILayout.Button("Edit", PlayFabEditorHelper.uiStyle.GetStyle("Button"), GUILayout.MaxHeight(19), GUILayout.MinWidth(35)))
70+
if(GUILayout.Button("EDIT", PlayFabEditorHelper.uiStyle.GetStyle("Button"), GUILayout.MaxHeight(19), GUILayout.MinWidth(35)))
7171
{
7272
tdEditor.LoadData(items[z].Key, items[z].Value);
7373
TitleInternalDataEditor.ShowWindow(tdEditor);

Source/Assets/PlayFabEditorExtensions/Editor/Scripts/Panels/PlayFabEditorToolsMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static void DrawToolsPanel()
4444
GUILayout.EndHorizontal();
4545

4646

47-
if(File.Exists(PlayFabEditorDataService.envDetails.localCloudScriptPath) || File.Exists(PlayFabEditorHelper.CLOUDSCRIPT_PATH))
47+
if(File.Exists(PlayFabEditorDataService.envDetails.localCloudScriptPath))
4848
{
4949
var path = File.Exists(PlayFabEditorDataService.envDetails.localCloudScriptPath) ? PlayFabEditorDataService.envDetails.localCloudScriptPath : PlayFabEditorHelper.CLOUDSCRIPT_PATH;
5050
var shortPath = "..." + path.Substring(path.LastIndexOf('/'));

Source/Assets/PlayFabEditorExtensions/Editor/Scripts/Utils/PlayFabEditorHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class PlayFabEditorHelper : UnityEditor.Editor
1313
{
1414
#region EDITOR_STRINGS
1515
public static string EDEX_NAME = "PlayFab_EditorExtensions";
16-
public static string EDEX_VERSION = "0.0.991";
16+
public static string EDEX_VERSION = "0.0.992";
1717
public static string EDEX_ROOT = Application.dataPath + "/PlayFabEditorExtensions/Editor";
1818
public static string DEV_API_ENDPOINT = "https://editor.playfabapi.com";
1919
public static string TITLE_ENDPOINT = ".playfabapi.com";

Source/Assets/PlayFabEditorExtensions/Editor/Scripts/Utils/PlayFabEditorPackageManager.cs

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -171,15 +171,21 @@ static void RemoveAndroidPushPlugin()
171171
static void ScanForInstalledPackages()
172172
{
173173
//TODO will need to update once whe have more than 1 package.
174-
175-
DirectoryInfo pluginDir = new DirectoryInfo(Application.dataPath + "/Plugins/Android/");
176-
var files = pluginDir.GetFiles("PlayFabUnityAndroid.aar", SearchOption.TopDirectoryOnly);
177-
if(files.Length > 0)
174+
try
178175
{
179-
AndroidPushPlugin = true;
180-
_androidPushPluginPreviousState = true;
181-
}
182-
176+
DirectoryInfo pluginDir = new DirectoryInfo(Application.dataPath + "/Plugins/Android/");
177+
var files = pluginDir.GetFiles("PlayFabUnityAndroid.aar", SearchOption.TopDirectoryOnly);
178+
if(files.Length > 0)
179+
{
180+
AndroidPushPlugin = true;
181+
_androidPushPluginPreviousState = true;
182+
}
183+
}
184+
catch
185+
{
186+
AndroidPushPlugin = false;
187+
_androidPushPluginPreviousState = false;
188+
}
183189
}
184190
#endregion
185191

Source/Assets/Plugins/Android.meta

Lines changed: 0 additions & 5 deletions
This file was deleted.

Source/Assets/Plugins/Android/AndroidManifest.xml

Lines changed: 0 additions & 106 deletions
This file was deleted.

Source/Assets/Plugins/Android/AndroidManifest.xml.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Source/Library/assetDatabase3

-236 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-24 Bytes
Binary file not shown.
Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
-debug
2+
-target:library
3+
-nowarn:0169
4+
-out:'Temp/Assembly-CSharp-Editor.dll'
5+
-r:'/Applications/Unity 5.4/Unity.app/Contents/Managed/UnityEngine.dll'
6+
-r:'/Applications/Unity 5.4/Unity.app/Contents/Managed/UnityEditor.dll'
7+
-r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll'
8+
-r:'Library/ScriptAssemblies/Assembly-CSharp.dll'
9+
-r:'/Applications/Unity 5.4/Unity.app/Contents/UnityExtensions/Unity/Advertisements/Editor/UnityEditor.Advertisements.dll'
10+
-r:'/Applications/Unity 5.4/Unity.app/Contents/UnityExtensions/Unity/EditorTestsRunner/Editor/nunit.framework.dll'
11+
-r:'/Applications/Unity 5.4/Unity.app/Contents/UnityExtensions/Unity/EditorTestsRunner/Editor/UnityEditor.EditorTestsRunner.dll'
12+
-r:'/Applications/Unity 5.4/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll'
13+
-r:'/Applications/Unity 5.4/Unity.app/Contents/UnityExtensions/Unity/GUISystem/Editor/UnityEditor.UI.dll'
14+
-r:'/Applications/Unity 5.4/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll'
15+
-r:'/Applications/Unity 5.4/Unity.app/Contents/UnityExtensions/Unity/Networking/Editor/UnityEditor.Networking.dll'
16+
-r:'/Applications/Unity 5.4/Unity.app/Contents/UnityExtensions/Unity/TreeEditor/Editor/UnityEditor.TreeEditor.dll'
17+
-r:'Assets/AssetStoreTools/Editor/AssetStoreTools.dll'
18+
-r:'Assets/AssetStoreTools/Editor/AssetStoreToolsExtra.dll'
19+
-r:'/Applications/Unity 5.4/Unity.app/Contents/Managed/UnityEditor.Graphs.dll'
20+
-r:'/Applications/Unity 5.4/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll'
21+
-r:'/Applications/Unity 5.4/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll'
22+
-r:'/Applications/Unity 5.4/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll'
23+
-r:'/Applications/Unity 5.4/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll'
24+
-r:'/Applications/Unity 5.4/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll'
25+
-r:'/Applications/Unity 5.4/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll'
26+
-define:UNITY_5_3_OR_NEWER
27+
-define:UNITY_5_4_OR_NEWER
28+
-define:UNITY_5_4_0
29+
-define:UNITY_5_4
30+
-define:UNITY_5
31+
-define:ENABLE_NEW_BUGREPORTER
32+
-define:ENABLE_AUDIO
33+
-define:ENABLE_CACHING
34+
-define:ENABLE_CLOTH
35+
-define:ENABLE_DUCK_TYPING
36+
-define:ENABLE_EDITOR_RETINA
37+
-define:ENABLE_RETINA_GUISTYLES
38+
-define:ENABLE_FRAME_DEBUGGER
39+
-define:ENABLE_GENERICS
40+
-define:ENABLE_HOME_SCREEN
41+
-define:ENABLE_IMAGEEFFECTS
42+
-define:ENABLE_LIGHT_PROBES_LEGACY
43+
-define:ENABLE_MICROPHONE
44+
-define:ENABLE_MULTIPLE_DISPLAYS
45+
-define:ENABLE_PHYSICS
46+
-define:ENABLE_PLUGIN_INSPECTOR
47+
-define:ENABLE_SHADOWS
48+
-define:ENABLE_SPRITERENDERER_FLIPPING
49+
-define:ENABLE_SPRITES
50+
-define:ENABLE_SPRITE_POLYGON
51+
-define:ENABLE_TERRAIN
52+
-define:ENABLE_RAKNET
53+
-define:ENABLE_UNET
54+
-define:ENABLE_UNITYEVENTS
55+
-define:ENABLE_VR
56+
-define:ENABLE_WEBCAM
57+
-define:ENABLE_WWW
58+
-define:ENABLE_CLOUD_SERVICES
59+
-define:ENABLE_CLOUD_SERVICES_COLLAB
60+
-define:ENABLE_CLOUD_SERVICES_ADS
61+
-define:ENABLE_CLOUD_HUB
62+
-define:ENABLE_CLOUD_PROJECT_ID
63+
-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
64+
-define:ENABLE_CLOUD_SERVICES_PURCHASING
65+
-define:ENABLE_CLOUD_SERVICES_ANALYTICS
66+
-define:ENABLE_CLOUD_SERVICES_UNET
67+
-define:ENABLE_CLOUD_SERVICES_BUILD
68+
-define:ENABLE_CLOUD_LICENSE
69+
-define:ENABLE_EDITOR_METRICS
70+
-define:ENABLE_EDITOR_METRICS_CACHING
71+
-define:INCLUDE_DYNAMIC_GI
72+
-define:INCLUDE_GI
73+
-define:INCLUDE_IL2CPP
74+
-define:INCLUDE_DIRECTX12
75+
-define:PLATFORM_SUPPORTS_MONO
76+
-define:RENDER_SOFTWARE_CURSOR
77+
-define:INCLUDE_PUBNUB
78+
-define:ENABLE_LOCALIZATION
79+
-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION
80+
-define:ENABLE_EDITOR_TESTS_RUNNER
81+
-define:UNITY_STANDALONE_OSX
82+
-define:UNITY_STANDALONE
83+
-define:ENABLE_SUBSTANCE
84+
-define:ENABLE_GAMECENTER
85+
-define:ENABLE_TEXTUREID_MAP
86+
-define:ENABLE_RUNTIME_GI
87+
-define:ENABLE_MOVIES
88+
-define:ENABLE_NETWORK
89+
-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
90+
-define:ENABLE_UNITYWEBREQUEST
91+
-define:ENABLE_CLUSTERINPUT
92+
-define:ENABLE_WEBSOCKET_HOST
93+
-define:ENABLE_MONO
94+
-define:ENABLE_PROFILER
95+
-define:DEBUG
96+
-define:TRACE
97+
-define:UNITY_ASSERTIONS
98+
-define:UNITY_EDITOR
99+
-define:UNITY_EDITOR_64
100+
-define:UNITY_EDITOR_OSX
101+
-define:UNITY_TEAM_LICENSE
102+
-define:UNITY_PRO_LICENSE
103+
'Assets/PlayFabEditorExtensions/Editor/PlayFabEditor.cs'
104+
'Assets/PlayFabEditorExtensions/Editor/Resources/PLACEHOLDER.cs'
105+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Components/MenuComponent.cs'
106+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Components/ProgressBar.cs'
107+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Components/TitleDataEditor.cs'
108+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Components/TitleDataViewer.cs'
109+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Components/TitleInternalDataEditor.cs'
110+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Components/TitleInternalDataViewer.cs'
111+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Panels/PlayFabEditorAuthenticate.cs'
112+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Panels/PlayFabEditorDataMenu.cs'
113+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Panels/PlayFabEditorHeader.cs'
114+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Panels/PlayFabEditorHelpMenu.cs'
115+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Panels/PlayFabEditorMenu.cs'
116+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Panels/PlayFabEditorSDKTools.cs'
117+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Panels/PlayFabEditorSettings.cs'
118+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Panels/PlayFabEditorToolsMenu.cs'
119+
'Assets/PlayFabEditorExtensions/Editor/Scripts/PlayFabEditorSDK/ISerializer.cs'
120+
'Assets/PlayFabEditorExtensions/Editor/Scripts/PlayFabEditorSDK/PlayFabEditorApi.cs'
121+
'Assets/PlayFabEditorExtensions/Editor/Scripts/PlayFabEditorSDK/PlayFabEditorHttp.cs'
122+
'Assets/PlayFabEditorExtensions/Editor/Scripts/PlayFabEditorSDK/PlayFabEditorModels.cs'
123+
'Assets/PlayFabEditorExtensions/Editor/Scripts/PlayFabEditorSDK/SimpleJson.cs'
124+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Utils/EditorCoroutine.cs'
125+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Utils/PlayFabEditorDataService.cs'
126+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Utils/PlayFabEditorHelper.cs'
127+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Utils/PlayFabEditorPackageManager.cs'
128+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Utils/PlayFabEditorUtils.cs'
129+
'Assets/PlayFabEditorExtensions/Editor/Scripts/Utils/PlayFabGuiFieldHelper.cs'
130+
'Assets/PlayFabSdk/Shared/Editor/AndroidManifestManager.cs'
131+
'Assets/PlayFabSdk/Shared/Editor/PlayFabHelp.cs'
132+
'Assets/PlayFabSdk/Shared/Models/Editor/MakeSharedSettingsObj.cs'
133+
-r:'/Applications/Unity 5.4/Unity.app/Contents/Mono/lib/mono/2.0/System.Runtime.Serialization.dll'
134+
-r:'/Applications/Unity 5.4/Unity.app/Contents/Mono/lib/mono/2.0/System.Xml.Linq.dll'

0 commit comments

Comments
 (0)