You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Assets/AppServices/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@ For game developers looking to use Azure App Services (previously Mobile Service
9
9
3. Create an Azure App Service [Mobile App](https://portal.azure.com)
10
10
* Create a Table (using Easy Tables) for app data.
11
11
12
-
## Unity 5 leaderboard demo
13
-
[App Services Demo project](https://github.com/Unity3dAzure/AppServicesDemo)will run inside UnityEditor on Mac or Windows. (The demo project has got everything bundled in and does not require any additional assets to work.)
14
-
For detailed instructions read my developer blog on how to [use Azure App Services with Unity project](http://www.deadlyfingers.net/azure/azure-app-services-for-unity3d/).
12
+
## Azure App Services Demos for Unity 5
13
+
Try the [Azure App Services Demos](https://github.com/Unity3dAzure/AppServicesDemo)project for Unity 5 on Mac / Windows. (The demo project has got everything already bundled in and does not require any additional assets to work. Just wire it up with your [Azure App Service](https://portal.azure.com) and run it right inside the Unity Editor.)
14
+
For detailed instructions read my developer blog on [how to setup Azure App Services and Unity demo project](http://www.deadlyfingers.net/azure/azure-app-services-for-unity3d/).
15
15
16
16
## Supported Features
17
17
### MobileServiceClient
@@ -40,9 +40,9 @@ Lookup | Get an item’s data using id property.
40
40
void Update<T>(T item, Action<IRestResponse<T>> callback = null) where T : new();
41
41
void Delete<T>(string id, Action<IRestResponse<T>> callback = null) where T : new();
42
42
void Query<T>(CustomQuery query, Action<IRestResponse<List<T>>> callback = null) where T : new();
43
+
void Query<T>(CustomQuery query, Action<IRestResponse<T>> callback = null) where T : INestedResults, new();
43
44
void Lookup<T>(string id, Action<IRestResponse<T>> callback = null) where T : new();
0 commit comments