Skip to content

Commit

Permalink
Update to 0.15.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jjhartmann committed Nov 20, 2024
1 parent 53e630a commit 2c968e5
Show file tree
Hide file tree
Showing 42 changed files with 48 additions and 47 deletions.
6 changes: 2 additions & 4 deletions Editor/ControlPanels/MTIONSDKToolsWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public enum WarningType
ERROR
}

private static bool _authenticated;
private static Task<bool> _authenticateTask;

private static string _remoteSdkVersion;
Expand Down Expand Up @@ -159,7 +158,7 @@ private void OnGUI()
return;
}

if (!_authenticated)
if (SDKServerManager.AuthState != service.api.auth.AuthState.AUTHENTICATED)
{
GUILayout.Space(150);
if (_authenticateTask != null)
Expand Down Expand Up @@ -280,7 +279,7 @@ private void InitializeStyles()

private void TryAuthenticate()
{
if (_authenticated || _authenticateTask != null)
if (SDKServerManager.AuthState == service.api.auth.AuthState.AUTHENTICATED || _authenticateTask != null)
{
return;
}
Expand All @@ -289,7 +288,6 @@ private void TryAuthenticate()
_authenticateTask = SDKServerManager.Authenticate();
_authenticateTask.ContinueWith(t =>
{
_authenticated = _authenticateTask.Result;
_authenticateTask = null;
});
}
Expand Down
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/Draco.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/DracoEditor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/DracoEncoder.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/FastSpringBone.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/FastSpringBone10.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/GLTFSerialization.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/Ktx.Editor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/Ktx.dll
Git LFS file not shown
4 changes: 2 additions & 2 deletions Plugins/ThirdParty/MTIONServerAPI_Public.dll
Git LFS file not shown
4 changes: 2 additions & 2 deletions Plugins/ThirdParty/MTIONStudioSDK_Public_Compiled.dll
Git LFS file not shown
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/MTIONUtilityClasses.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/MToon.Editor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/MToon.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/UniGLTF.Editor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/UniGLTF.Utils.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/UniGLTF.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/UniHumanoid.Editor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/UniHumanoid.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/UniTask.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/UniVRM.Editor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/UnityGLTFEditor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/UnityGLTFScripts.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRM.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRM10.Editor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRM10.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRMShaders.GLTF.IO.Editor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRMShaders.GLTF.IO.Runtime.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRMShaders.GLTF.UniUnlit.Editor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRMShaders.GLTF.UniUnlit.Runtime.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRMShaders.VRM.IO.Runtime.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRMShaders.VRM10.Format.Runtime.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRMShaders.VRM10.MToon10.Editor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VRMShaders.VRM10.MToon10.Runtime.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/VrmLib.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/glTFast.Editor.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/glTFast.Export.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/glTFast.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion Plugins/ThirdParty/glTFast.dots.dll
Git LFS file not shown
5 changes: 4 additions & 1 deletion Scripts/ActionSystem/Internal/MActionBehaviour.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
using System.Collections.Generic;
using System.Reflection;
using mtion.room.sdk.compiled;
using UnityEditor;
using UnityEngine;
using UnityEngine.Serialization;
using Object = UnityEngine.Object;

#if UNITY_EDITOR
using UnityEditor;
#endif

namespace mtion.room.sdk.action
{
[Serializable]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.mtion.sdk",
"description": "Tools to create assets and clubhouses for mtion studio.",
"version": "0.15.11",
"version": "0.15.12",
"supportedVersion": "2021.3.25f1",
"unity": "2021.3",
"displayName": "Mtion SDK",
Expand Down

0 comments on commit 2c968e5

Please sign in to comment.