Skip to content

Commit

Permalink
2023.05.3b
Browse files Browse the repository at this point in the history
  • Loading branch information
200Tigersbloxed committed May 25, 2024
1 parent 611a8df commit 35c621f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Assets/Scripts/Game/Avatar/NetAvatarCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,11 @@ internal void DestroyIK(bool vr)
{
VRIKRootController rootController = Avatar.GetComponent<VRIKRootController>();
if(rootController != null)
Object.Destroy(rootController);
Object.DestroyImmediate(rootController);
if(vrik != null)
Object.Destroy(vrik);
Object.DestroyImmediate(vrik);
foreach (TwistRelaxer twistRelaxer in Avatar.gameObject.GetComponentsInChildren<TwistRelaxer>())
Object.Destroy(twistRelaxer);
Object.DestroyImmediate(twistRelaxer);
SetAvatarPosition(false);
if(vr)
Calibrated = false;
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Init.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

public class Init : MonoBehaviour
{
public const string VERSION = "2024.05.2b";
public const string VERSION = "2024.05.3b";

public static Init Instance;
public static bool IsQuitting { get; private set; }
Expand Down

0 comments on commit 35c621f

Please sign in to comment.