diff --git a/Editor/Sites/Possession_Editor.cs b/Editor/Sites/Possessable_Editor.cs similarity index 98% rename from Editor/Sites/Possession_Editor.cs rename to Editor/Sites/Possessable_Editor.cs index a68cb5a..a86ebd2 100644 --- a/Editor/Sites/Possession_Editor.cs +++ b/Editor/Sites/Possessable_Editor.cs @@ -12,7 +12,7 @@ using UnityEditor; namespace Passer { [CustomEditor(typeof(Possessable))] - public class Possession_Editor : Editor { + public class Possessable_Editor : Editor { protected Possessable possession; diff --git a/Editor/Sites/Possession_Editor.cs.meta b/Editor/Sites/Possessable_Editor.cs.meta similarity index 100% rename from Editor/Sites/Possession_Editor.cs.meta rename to Editor/Sites/Possessable_Editor.cs.meta diff --git a/Runtime/HumanoidFree/Scripts/HumanoidControl.cs b/Runtime/HumanoidFree/Scripts/HumanoidControl.cs index 08d644b..764608d 100644 --- a/Runtime/HumanoidFree/Scripts/HumanoidControl.cs +++ b/Runtime/HumanoidFree/Scripts/HumanoidControl.cs @@ -375,13 +375,20 @@ namespace Passer.Humanoid { public void ChangeAvatar(GameObject fpAvatarPrefab, GameObject tpAvatarPrefab) { remoteAvatar = tpAvatarPrefab; + if (remoteAvatar == null) + remoteAvatar = fpAvatarPrefab; + LocalChangeAvatar(fpAvatarPrefab); if (humanoidNetworking != null) { - if (remoteAvatar != null) - humanoidNetworking.ChangeAvatar(this, remoteAvatar.name); - else - humanoidNetworking.ChangeAvatar(this, fpAvatarPrefab.name); + + if (remoteAvatar != null) { + Possessable avatarPossessable = remoteAvatar.GetComponent(); + if (avatarPossessable == null) + humanoidNetworking.ChangeAvatar(this, fpAvatarPrefab.name); + else + humanoidNetworking.ChangeAvatar(this, avatarPossessable.assetPath, avatarPossessable.siteLocation); + } } } @@ -2503,7 +2510,8 @@ namespace Passer.Humanoid { ExtendHumanoids(this); - humanoidNetworking = HumanoidNetworking.GetLocalHumanoidNetworking(); + if (humanoidNetworking == null) + humanoidNetworking = HumanoidNetworking.GetLocalHumanoidNetworking(); if (!isRemote && humanoidNetworking != null) humanoidNetworking.InstantiateHumanoid(this); diff --git a/Runtime/HumanoidFree/Scripts/Networking/HumanoidNetworking.cs b/Runtime/HumanoidFree/Scripts/Networking/HumanoidNetworking.cs index 189e0f0..5c988a7 100644 --- a/Runtime/HumanoidFree/Scripts/Networking/HumanoidNetworking.cs +++ b/Runtime/HumanoidFree/Scripts/Networking/HumanoidNetworking.cs @@ -56,7 +56,7 @@ namespace Passer.Humanoid { void Grab(HandTarget handTarget, GameObject obj, bool rangeCheck, HandTarget.GrabType grabType = HandTarget.GrabType.HandGrab); void LetGo(HandTarget handTarget); - void ChangeAvatar(HumanoidControl humanoid, string remoteAvatarName); + void ChangeAvatar(HumanoidControl humanoid, string remoteAvatarName, string possessionLocation = null); void SyncTrackingSpace(HumanoidControl humanoid); @@ -1420,12 +1420,14 @@ namespace Passer.Humanoid { public ulong nwId; public byte humanoidId; public string avatarPrefabName; + public string possessionLocation; public ChangeAvatar() { } - public ChangeAvatar(HumanoidControl humanoid, string avatarPrefabName) { + public ChangeAvatar(HumanoidControl humanoid, string avatarPrefabName, string possessionLocation) { nwId = humanoid.nwId; humanoidId = (byte)humanoid.humanoidId; this.avatarPrefabName = avatarPrefabName; + this.possessionLocation = possessionLocation; } public ChangeAvatar(byte[] data) : base(data) { } @@ -1436,6 +1438,7 @@ namespace Passer.Humanoid { bw.Write(nwId); bw.Write(humanoidId); bw.Write(avatarPrefabName); + bw.Write(possessionLocation); byte[] data = ms.ToArray(); return data; @@ -1448,6 +1451,7 @@ namespace Passer.Humanoid { nwId = br.ReadUInt64(); humanoidId = br.ReadByte(); avatarPrefabName = br.ReadString(); + possessionLocation = br.ReadString(); } // This is the same code as in the base class IMessage @@ -1473,7 +1477,6 @@ namespace Passer.Humanoid { } public static void Receive(this IHumanoidNetworking receivingNetworking, ChangeAvatar msg) { - receivingNetworking.DebugLog("Receive Change Avatar"); IHumanoidNetworking networking = GetHumanoidNetworking(receivingNetworking, msg.nwId); if (networking == null) { if (receivingNetworking.debug <= DebugLevel.Error) @@ -1493,6 +1496,12 @@ namespace Passer.Humanoid { return; } + if (msg.possessionLocation != null) { + Debug.Log("Need to download avatar possession from " + msg.possessionLocation); + VisitorPossessions.RetrievePossessableAsync(msg.possessionLocation, msg.avatarPrefabName, retrievedAvatar => ProcessRetrievedAvatar(networking, remoteHumanoid, retrievedAvatar)); + return; + } + GameObject remoteAvatar = (GameObject)Resources.Load(msg.avatarPrefabName); if (remoteAvatar == null) { if (networking.debug <= DebugLevel.Error) @@ -1506,6 +1515,18 @@ namespace Passer.Humanoid { remoteHumanoid.LocalChangeAvatar(remoteAvatar); } + private static void ProcessRetrievedAvatar(IHumanoidNetworking networking, HumanoidControl remoteHumanoid, GameObject retrievedAvatar) { + if (retrievedAvatar == null) { + if (networking.debug <= DebugLevel.Error) + Debug.LogError("Could not retrieve avatar."); + return; + } + + if (networking.debug <= DebugLevel.Info) + networking.DebugLog("Receive Change Possessesable Avatar " + retrievedAvatar); + + remoteHumanoid.LocalChangeAvatar(retrievedAvatar); + } #endregion @@ -1640,31 +1661,12 @@ namespace Passer.Humanoid { } public static IHumanoidNetworking GetLocalHumanoidNetworking() { -#if hNW_UNET || hNW_PHOTON || hNW_BOLT || hNW_MIRROR HumanoidPlayer[] humanoidNetworkings = UnityEngine.Object.FindObjectsOfType(); foreach (IHumanoidNetworking humanoidNetworking in humanoidNetworkings) { if (humanoidNetworking.isLocal) return humanoidNetworking; } - //#elif hNW_PHOTON - // IHumanoidNetworking[] humanoidNetworkings = UnityEngine.Object.FindObjectsOfType(); - // foreach (IHumanoidNetworking humanoidNetworking in humanoidNetworkings) { - // if (humanoidNetworking.isLocal) - // return humanoidNetworking; - // } - //#elif hNW_BOLT - // IHumanoidNetworking[] humanoidNetworkings = UnityEngine.Object.FindObjectsOfType(); - // foreach (IHumanoidNetworking humanoidNetworking in humanoidNetworkings) { - // if (humanoidNetworking.isLocal) - // return humanoidNetworking; - // } - //#elif hNW_MIRROR - // IHumanoidNetworking[] humanoidNetworkings = UnityEngine.Object.FindObjectsOfType(); - // foreach (IHumanoidNetworking humanoidNetworking in humanoidNetworkings) { - // if (humanoidNetworking.isLocal) - // return humanoidNetworking; - // } -#endif + return null; } diff --git a/Runtime/HumanoidFree/Scripts/Networking/HumanoidPlayer.cs b/Runtime/HumanoidFree/Scripts/Networking/HumanoidPlayer.cs index f67b503..a773613 100644 --- a/Runtime/HumanoidFree/Scripts/Networking/HumanoidPlayer.cs +++ b/Runtime/HumanoidFree/Scripts/Networking/HumanoidPlayer.cs @@ -1,4 +1,5 @@ using System; +using System.Collections.Generic; using UnityEngine; namespace Passer.Humanoid { @@ -28,13 +29,124 @@ namespace Passer.Humanoid { public bool fuseTracking { get; set; } #else - public class HumanoidPlayer : MonoBehaviour { + + public class HumanoidPlayer : MonoBehaviour, IHumanoidNetworking { + + #region Dummy interface + + public void Send(bool b) { } + public void Send(byte b) { } + public void Send(int x) { } + public void Send(float f) { } + public void Send(Vector3 v) { } + public void Send(Quaternion q) { } + + public bool ReceiveBool() { + return false; + } + public byte ReceiveByte() { + return 0; + } + public int ReceiveInt() { + return 0; + } + public float ReceiveFloat() { + return 0; + } + public Vector3 ReceiveVector3() { + return Vector3.zero; + } + public Quaternion ReceiveQuaternion() { + return Quaternion.identity; + } + + public ulong GetObjectIdentity(GameObject obj) { + return 0; + } + public GameObject GetGameObject(ulong objIdentity) { + return this.gameObject; + } + + public void InstantiateHumanoid(HumanoidControl humanoid) { + if (debug <= HumanoidNetworking.DebugLevel.Info) + DebugLog("Send Instantiate Humanoid " + humanoid.humanoidId); + + HumanoidNetworking.InstantiateHumanoid instantiateHumanoid = new HumanoidNetworking.InstantiateHumanoid(humanoid); + if (createLocalRemotes) + this.Receive(instantiateHumanoid); + } + public void DestroyHumanoid(HumanoidControl humanoid) { } + public void UpdateHumanoidPose(HumanoidControl humanoid) { } + public void Grab(HandTarget handTarget, GameObject obj, bool rangeCheck, HandTarget.GrabType grabType = HandTarget.GrabType.HandGrab) { } + public void LetGo(HandTarget handTarget) { } + public void ChangeAvatar(HumanoidControl humanoid, string avatarPrefabName, string possessionLocation = null) { + if (debug <= HumanoidNetworking.DebugLevel.Info) + Debug.Log(humanoid.nwId + ": Change Avatar: " + avatarPrefabName); + + HumanoidNetworking.ChangeAvatar changeAvatar = new HumanoidNetworking.ChangeAvatar(humanoid, avatarPrefabName, possessionLocation); + if (createLocalRemotes) + this.Receive(changeAvatar); + } + + public void SyncTrackingSpace(HumanoidControl humanoid) { } + public void ReenableNetworkSync(GameObject obj) { } + public void DisableNetworkSync(GameObject obj) { } + + public void DebugLog(string s) { + Debug.Log(s); + } + public void DebugWarning(string s) { + Debug.LogWarning(s); + } + public void DebugError(string s) { + Debug.LogError(s); + } + + public float sendRate => 0; + + public HumanoidNetworking.Smoothing smoothing => HumanoidNetworking.Smoothing.None; + + public bool createLocalRemotes { get => true; set { return; } } + + private bool _isLocal; + public bool isLocal => _isLocal; // may need to implement this + + public ulong nwId => 0; + + public bool syncFingerSwing => false; + + public bool syncTracking { get => false; set { return; } } + + public bool fuseTracking => false; + + public HumanoidNetworking.HumanoidPose lastHumanoidPose { get => null; set { return; } } + #endregion Dummy Interface + + public List humanoids { get; set; } + + protected virtual void Awake() { + GameObject.DontDestroyOnLoad(this.gameObject); + humanoids = HumanoidNetworking.FindLocalHumanoids(); + + for (int i = 0; i < humanoids.Count; i++) { + HumanoidControl humanoid = humanoids[i]; + if (humanoid.isRemote) + continue; + + humanoid.humanoidNetworking = this; + + ((IHumanoidNetworking)this).InstantiateHumanoid(humanoid); + } + } + + #endif [SerializeField] protected HumanoidNetworking.DebugLevel _debug = HumanoidNetworking.DebugLevel.Error; public HumanoidNetworking.DebugLevel debug { get { return _debug; } } + } #pragma warning restore 0618 diff --git a/Runtime/Sites/Scripts/HumanoidInterface.cs b/Runtime/Sites/Scripts/HumanoidInterface.cs index bac43c1..e172489 100644 --- a/Runtime/Sites/Scripts/HumanoidInterface.cs +++ b/Runtime/Sites/Scripts/HumanoidInterface.cs @@ -30,8 +30,11 @@ namespace Passer.Humanoid { HumanoidControl humanoidInScene = GetComponentInParent(); if (humanoidInScene == null) { HumanoidControl[] humanoids = FindObjectsOfType(); - if (humanoids.Length == 1) { - this.humanoid = humanoids[0]; + foreach (HumanoidControl humanoid in humanoids) { + if (humanoid.isRemote == false) + this.humanoid = humanoid; + } + if (this.humanoid != null) { AttachToHumanoid(this.humanoid); } } diff --git a/Runtime/Sites/Scripts/Possessable.cs b/Runtime/Sites/Scripts/Possessable.cs index 01ccfdc..5579bb3 100644 --- a/Runtime/Sites/Scripts/Possessable.cs +++ b/Runtime/Sites/Scripts/Possessable.cs @@ -48,8 +48,8 @@ namespace Passer { return ""; string siteLocation = SiteNavigator.currentSite.siteLocation; - siteLocation = siteLocation.Substring(0, siteLocation.LastIndexOf("/")); - return (siteLocation + "/possessions"); + //siteLocation = siteLocation.Substring(0, siteLocation.LastIndexOf("/")); + return (siteLocation + "_possessions"); } } diff --git a/Runtime/Visitors/Scripts/VisitorPossessions.cs b/Runtime/Visitors/Scripts/VisitorPossessions.cs index 54e106b..6cb6f78 100644 --- a/Runtime/Visitors/Scripts/VisitorPossessions.cs +++ b/Runtime/Visitors/Scripts/VisitorPossessions.cs @@ -275,6 +275,53 @@ namespace Passer { } } + public static IEnumerator RetrievePossessableAsync(string possessableLocation, string possessablePath, System.Action callback) { + GameObject prefab; + + if (possessableLocation == "") { + yield return null; + } + else { + Debug.Log("Cache size: " + cache.Count); + CachedPossession foundPossession = cache.Find(entry => entry.siteLocation == possessableLocation); + if (foundPossession == null) { + string url = "https://" + possessableLocation + ".windows" + ".site"; + Debug.Log("Loading possession: " + url); + + UnityWebRequest request = UnityWebRequestAssetBundle.GetAssetBundle(url); + yield return request.SendWebRequest(); + + AssetBundle assetBundle = DownloadHandlerAssetBundle.GetContent(request); + if (assetBundle == null) { + Debug.LogError("Could not load " + url); + yield break; + } + + Debug.Log("Load: " + possessablePath); + prefab = assetBundle.LoadAsset(possessablePath); + if (prefab == null) { + Debug.LogError("Could not load " + possessablePath); + yield break; + } + + CachedPossession cachedPossession = new CachedPossession() { + siteLocation = possessableLocation, + assetBundle = assetBundle, + }; + cache.Add(cachedPossession); + } + else { + Debug.Log("Load from cache: " + possessablePath); + prefab = foundPossession.assetBundle.LoadAsset(possessablePath); + if (prefab == null) { + Debug.LogError("Could not load " + possessablePath); + yield break; + } + } + callback(prefab); + } + } + public static void UnloadPossession() { lastAssetBundle.Unload(true); } diff --git a/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/AutodeskCharity.prefab.meta b/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/AutodeskCharity.prefab.meta index 1cad273..d6c4ccd 100644 --- a/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/AutodeskCharity.prefab.meta +++ b/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/AutodeskCharity.prefab.meta @@ -3,5 +3,5 @@ guid: 6d76b63d1c2ee4f4995b2109dc16402f PrefabImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: avatarshop_possessions assetBundleVariant: diff --git a/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/Mixamo.prefab.meta b/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/Mixamo.prefab.meta index 7c5acbc..5f73beb 100644 --- a/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/Mixamo.prefab.meta +++ b/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/Mixamo.prefab.meta @@ -3,5 +3,5 @@ guid: 4a108532c0ba23c4796003a7390c1ae9 PrefabImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: avatarshop_possessions assetBundleVariant: diff --git a/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/Robot Kyle.prefab.meta b/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/Robot Kyle.prefab.meta index af1c903..2e792e7 100644 --- a/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/Robot Kyle.prefab.meta +++ b/Samples~/VisitorsAndSites/Sites/AvatarShop/Resources/Robot Kyle.prefab.meta @@ -3,5 +3,5 @@ guid: f558cc7556c4ffc4594edb212b1cd0dc PrefabImporter: externalObjects: {} userData: - assetBundleName: + assetBundleName: avatarshop_possessions assetBundleVariant: diff --git a/Samples~/VisitorsAndSites/Visitors/HumanoidVisitor Desktop.unity b/Samples~/VisitorsAndSites/Visitors/HumanoidVisitor Desktop.unity index 5d8e228..20854b6 100644 --- a/Samples~/VisitorsAndSites/Visitors/HumanoidVisitor Desktop.unity +++ b/Samples~/VisitorsAndSites/Visitors/HumanoidVisitor Desktop.unity @@ -1024,7 +1024,6 @@ GameObject: - component: {fileID: 406190703} - component: {fileID: 406190705} - component: {fileID: 406190706} - - component: {fileID: 406190704} - component: {fileID: 406190708} m_Layer: 0 m_Name: HumanoidVisitor @@ -1332,7 +1331,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 3 label: Touchpad Vertical @@ -1346,7 +1365,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: leftTouchpadVertical - id: 4 label: Touchpad Horizontal @@ -1360,7 +1399,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: leftTouchpadHorizontal - id: 5 label: Touchpad Button @@ -1374,7 +1433,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 6 label: Button 1 @@ -1432,7 +1511,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 8 label: Button 3 @@ -1446,7 +1545,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 9 label: Button 4 @@ -1460,7 +1579,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 10 label: Trigger 1 @@ -1518,7 +1657,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 12 label: Option @@ -1532,7 +1691,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: rightInputEvents: - id: 0 @@ -1547,7 +1726,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 1 label: Stick Horizontal @@ -1561,7 +1760,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 2 label: Stick Button @@ -1575,7 +1794,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 3 label: Touchpad Vertical @@ -1589,7 +1828,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 4 label: Touchpad Horizontal @@ -1603,7 +1862,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 5 label: Touchpad Button @@ -1617,7 +1896,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 6 label: Button 1 @@ -1675,7 +1974,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 8 label: Button 3 @@ -1689,7 +2008,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 9 label: Button 4 @@ -1703,7 +2042,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 10 label: Trigger 1 @@ -1761,7 +2120,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: - id: 12 label: Option @@ -1775,7 +2154,27 @@ MonoBehaviour: - On Change - Continuous fromEventLabel: - events: [] + events: + - eventType: 0 + eventNetworking: 0 + functionCall: + targetGameObject: {fileID: 0} + methodName: + parameters: [] + boolInverse: 0 + overrideMode: 0 + floatParameter: 0 + floatTriggerLow: 0.01 + floatTriggerHigh: 0.99 + multiplicationFactor: 1 + intTriggerLow: 0 + intTriggerHigh: 1 + label: + poseValue: {fileID: 0} + stringValue: + poseFloatEvent: + m_PersistentCalls: + m_Calls: [] defaultParameterProperty: --- !u!114 &406190701 MonoBehaviour: @@ -1918,44 +2317,6 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: f1bac11d1dcef5b46b26ce430dcf6d77, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!114 &406190704 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 406190697} - m_Enabled: 0 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 01614664b831546d2ae94a42149d80ac, type: 3} - m_Name: - m_EditorClassIdentifier: - m_MoveRepeatDelay: 0.5 - m_MoveRepeatRate: 0.1 - m_ActionsAsset: {fileID: -944628639613478452, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_PointAction: {fileID: 1054132383583890850, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_MoveAction: {fileID: 3710738434707379630, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_SubmitAction: {fileID: 2064916234097673511, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_CancelAction: {fileID: -1967631576421560919, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_LeftClickAction: {fileID: 8056856818456041789, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_MiddleClickAction: {fileID: 3279352641294131588, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_RightClickAction: {fileID: 3837173908680883260, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_ScrollWheelAction: {fileID: 4502412055082496612, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_TrackedDevicePositionAction: {fileID: 4754684134866288074, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_TrackedDeviceOrientationAction: {fileID: 1025543830046995696, guid: ca9f5fa95ffab41fb9a615ab714db018, - type: 3} - m_DeselectOnBackgroundClick: 1 - m_PointerBehavior: 0 --- !u!114 &406190705 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1983,8 +2344,8 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 30aa688ff1be4ec45b922da88c07d164, type: 3} m_Name: m_EditorClassIdentifier: - loadSiteAtStart: 1 - startSite: passervr.com/sites/start + loadSiteAtStart: 0 + startSite: passervr.com/sites/avatarshop startScene: --- !u!114 &406190707 MonoBehaviour: @@ -2429,7 +2790,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 470366358} m_LocalRotation: {x: -6.938894e-18, y: -4.135903e-25, z: -0.000000040031257, w: 1} - m_LocalPosition: {x: -0.03485167, y: 0.00020378362, z: 0.0005421189} + m_LocalPosition: {x: -0.033593446, y: -0.00007570442, z: -0.0007565345} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 832089069} @@ -2640,8 +3001,8 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 556404546} - m_LocalRotation: {x: -0.00031968387, y: -0.031741515, z: -0.055519063, w: 0.99795294} - m_LocalPosition: {x: -0.26127705, y: -0.00021374832, z: -0.00077450834} + m_LocalRotation: {x: -0.0012242399, y: -0.032984078, z: -0.055854894, w: 0.9978933} + m_LocalPosition: {x: -0.26206145, y: 0.000049919014, z: 0.00085795997} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 850870784} @@ -4445,7 +4806,7 @@ MonoBehaviour: target: length: 0 transform: {fileID: 470366359} - baseRotation: {x: 0, y: 0, z: 0, w: 1} + baseRotation: {x: 0, y: 0, z: 0, w: 1.0000002} basePosition: {x: -0.03472484, y: -0.00007957453, z: 0.00010121022} toBoneRotation: {x: 0.1821647, y: 0.14202075, z: -0.7058615, w: -0.669631} bone: @@ -4509,7 +4870,7 @@ MonoBehaviour: target: length: 0 transform: {fileID: 350577121} - baseRotation: {x: -0.0000000025948506, y: -0.000000003345888, z: 0.00000008922429, + baseRotation: {x: 0.0000000047323905, y: -0.0000000038049124, z: 0.0000000931582, w: 1.0000007} basePosition: {x: -0.020972623, y: 0.00000001972171, z: -0.000000023013625} toBoneRotation: {x: 0.5046204, y: -0.4984175, z: -0.49218103, w: -0.5046746} @@ -4574,7 +4935,7 @@ MonoBehaviour: target: length: 0 transform: {fileID: 1420667492} - baseRotation: {x: 0, y: 0, z: 0, w: 1.0000002} + baseRotation: {x: 0, y: 0, z: 0, w: 1.0000006} basePosition: {x: -0.02793382, y: -0.0000000096988515, z: -0.000000038009944} toBoneRotation: {x: 0.54199415, y: -0.5223527, z: -0.46527293, w: -0.46573755} bone: @@ -4638,7 +4999,7 @@ MonoBehaviour: target: length: 0 transform: {fileID: 1268742392} - baseRotation: {x: 0, y: 0, z: 0, w: 1.0000002} + baseRotation: {x: 0, y: 0, z: 0, w: 1.0000006} basePosition: {x: -0.021958875, y: -0.00000006673008, z: 0.000000008870288} toBoneRotation: {x: 0.5181041, y: -0.49743828, z: -0.50458765, w: -0.4790777} bone: @@ -4702,7 +5063,8 @@ MonoBehaviour: target: length: 0 transform: {fileID: 2132157727} - baseRotation: {x: 0, y: 0, z: 0, w: 1.0000001} + baseRotation: {x: -0.000000014830519, y: -0.0000000012033368, z: 4.961996e-10, + w: 1.0000004} basePosition: {x: -0.013552897, y: -0.00000007665949, z: 0.000000006823484} toBoneRotation: {x: 0.4840008, y: -0.48211464, z: -0.60382974, w: -0.41072986} bone: @@ -4766,7 +5128,7 @@ MonoBehaviour: target: length: 0 transform: {fileID: 470366359} - baseRotation: {x: 0, y: 0, z: 0, w: 1} + baseRotation: {x: 0, y: 0, z: 0, w: 1.0000002} basePosition: {x: -0.03472484, y: -0.00007957453, z: 0.00010121022} toBoneRotation: {x: 0.1821647, y: 0.14202075, z: -0.7058615, w: -0.669631} bone: @@ -4829,7 +5191,7 @@ MonoBehaviour: target: length: 0 transform: {fileID: 350577121} - baseRotation: {x: -0.0000000025948506, y: -0.000000003345888, z: 0.00000008922429, + baseRotation: {x: 0.0000000047323905, y: -0.0000000038049124, z: 0.0000000931582, w: 1.0000007} basePosition: {x: -0.020972623, y: 0.00000001972171, z: -0.000000023013625} toBoneRotation: {x: 0.5046204, y: -0.4984175, z: -0.49218103, w: -0.5046746} @@ -4893,7 +5255,7 @@ MonoBehaviour: target: length: 0 transform: {fileID: 1420667492} - baseRotation: {x: 0, y: 0, z: 0, w: 1.0000002} + baseRotation: {x: 0, y: 0, z: 0, w: 1.0000006} basePosition: {x: -0.02793382, y: -0.0000000096988515, z: -0.000000038009944} toBoneRotation: {x: 0.54199415, y: -0.5223527, z: -0.46527293, w: -0.46573755} bone: @@ -4956,7 +5318,7 @@ MonoBehaviour: target: length: 0 transform: {fileID: 1268742392} - baseRotation: {x: 0, y: 0, z: 0, w: 1.0000002} + baseRotation: {x: 0, y: 0, z: 0, w: 1.0000006} basePosition: {x: -0.021958875, y: -0.00000006673008, z: 0.000000008870288} toBoneRotation: {x: 0.5181041, y: -0.49743828, z: -0.50458765, w: -0.4790777} bone: @@ -5019,7 +5381,8 @@ MonoBehaviour: target: length: 0 transform: {fileID: 2132157727} - baseRotation: {x: 0, y: 0, z: 0, w: 1.0000001} + baseRotation: {x: -0.000000014830519, y: -0.0000000012033368, z: 4.961996e-10, + w: 1.0000004} basePosition: {x: -0.013552897, y: -0.00000007665949, z: 0.000000006823484} toBoneRotation: {x: 0.4840008, y: -0.48211464, z: -0.60382974, w: -0.41072986} bone: @@ -6228,7 +6591,7 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1276374657} - m_LocalRotation: {x: 0.000846671, y: 0.16309212, z: -0.00014005743, w: 0.9866105} + m_LocalRotation: {x: 0.0012244005, y: 0.16988349, z: -0.00021130778, w: 0.98546344} m_LocalPosition: {x: -0.20965344, y: -0.000000022817403, z: 0.00000001839362} m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: @@ -6420,17 +6783,17 @@ PrefabInstance: - target: {fileID: 4357365149916800000, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.033016507 + value: 0.03301643 objectReference: {fileID: 0} - target: {fileID: 4357365149916800000, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.034922767 + value: 0.034922853 objectReference: {fileID: 0} - target: {fileID: 4357365149916800000, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.0006164049 + value: 0.00061622605 objectReference: {fileID: 0} - target: {fileID: 4357365149916800002, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -6440,17 +6803,17 @@ PrefabInstance: - target: {fileID: 4357365149916800002, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.0031950346 + value: 0.0031949666 objectReference: {fileID: 0} - target: {fileID: 4357365149916800002, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.0025557305 + value: -0.002555655 objectReference: {fileID: 0} - target: {fileID: 4357365149916800002, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.009327917 + value: -0.009327856 objectReference: {fileID: 0} - target: {fileID: 4357365149916800004, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -6460,97 +6823,97 @@ PrefabInstance: - target: {fileID: 4357365149916800004, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.13371956 + value: -0.13371958 objectReference: {fileID: 0} - target: {fileID: 4357365149916800004, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.1657763 + value: -0.16577631 objectReference: {fileID: 0} - target: {fileID: 4357365149916800004, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.17628737 + value: 0.17628741 objectReference: {fileID: 0} - target: {fileID: 4357365149916800006, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.99884427 + value: 0.9988443 objectReference: {fileID: 0} - target: {fileID: 4357365149916800006, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.03301638 + value: 0.033016406 objectReference: {fileID: 0} - target: {fileID: 4357365149916800006, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.034922976 + value: -0.034922887 objectReference: {fileID: 0} - target: {fileID: 4357365149916800006, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.00061636756 + value: -0.0006163209 objectReference: {fileID: 0} - target: {fileID: 4357365149916800008, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.97119826 + value: 0.9711982 objectReference: {fileID: 0} - target: {fileID: 4357365149916800008, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.22828917 + value: -0.22828914 objectReference: {fileID: 0} - target: {fileID: 4357365149916800008, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.05974251 + value: -0.05974295 objectReference: {fileID: 0} - target: {fileID: 4357365149916800008, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.03299828 + value: -0.032998513 objectReference: {fileID: 0} - target: {fileID: 4357365149916800010, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.96143883 + value: 0.9614388 objectReference: {fileID: 0} - target: {fileID: 4357365149916800010, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.13420002 + value: -0.1342001 objectReference: {fileID: 0} - target: {fileID: 4357365149916800010, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.1651264 + value: 0.16512622 objectReference: {fileID: 0} - target: {fileID: 4357365149916800010, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.17423876 + value: -0.17423879 objectReference: {fileID: 0} - target: {fileID: 4357365149916800012, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.79303527 + value: 0.79303503 objectReference: {fileID: 0} - target: {fileID: 4357365149916800012, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.18897939 + value: 0.18897936 objectReference: {fileID: 0} - target: {fileID: 4357365149916800012, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.5028091 + value: 0.5028093 objectReference: {fileID: 0} - target: {fileID: 4357365149916800012, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.28734115 + value: 0.28734142 objectReference: {fileID: 0} - target: {fileID: 4357365149916800014, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -6560,17 +6923,17 @@ PrefabInstance: - target: {fileID: 4357365149916800014, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.22828908 + value: -0.22828916 objectReference: {fileID: 0} - target: {fileID: 4357365149916800014, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.05974263 + value: 0.05974246 objectReference: {fileID: 0} - target: {fileID: 4357365149916800014, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.032998353 + value: 0.03299827 objectReference: {fileID: 0} - target: {fileID: 4357365149916800016, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -6580,17 +6943,17 @@ PrefabInstance: - target: {fileID: 4357365149916800016, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.31666932 + value: -0.31666946 objectReference: {fileID: 0} - target: {fileID: 4357365149916800016, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.25593618 + value: 0.25593626 objectReference: {fileID: 0} - target: {fileID: 4357365149916800016, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.025801199 + value: -0.0258013 objectReference: {fileID: 0} - target: {fileID: 4357365149916800018, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -6600,47 +6963,47 @@ PrefabInstance: - target: {fileID: 4357365149916800018, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.1889793 + value: 0.18897943 objectReference: {fileID: 0} - target: {fileID: 4357365149916800018, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.502809 + value: -0.50280887 objectReference: {fileID: 0} - target: {fileID: 4357365149916800018, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.28734145 + value: -0.28734127 objectReference: {fileID: 0} - target: {fileID: 4357365149916800022, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.9124887 + value: 0.91248864 objectReference: {fileID: 0} - target: {fileID: 4357365149916800022, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.31701413 + value: -0.31701422 objectReference: {fileID: 0} - target: {fileID: 4357365149916800022, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.25710696 + value: -0.257107 objectReference: {fileID: 0} - target: {fileID: 4357365149916800022, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.027613644 + value: 0.027613485 objectReference: {fileID: 0} - target: {fileID: 4357365149916800024, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: -0.47092575 + value: -0.47092563 objectReference: {fileID: 0} - target: {fileID: 4357365149916800024, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.66615134 + value: 0.6661514 objectReference: {fileID: 0} - target: {fileID: 4357365149916800024, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -6655,62 +7018,62 @@ PrefabInstance: - target: {fileID: 4357365149916800030, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: -0.4709259 + value: -0.4709258 objectReference: {fileID: 0} - target: {fileID: 4357365149916800030, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.66615134 + value: 0.6661514 objectReference: {fileID: 0} - target: {fileID: 4357365149916800030, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.44501308 + value: -0.4450131 objectReference: {fileID: 0} - target: {fileID: 4357365149916800030, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.36937055 + value: -0.3693706 objectReference: {fileID: 0} - target: {fileID: 4357365149916800032, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.98166007 + value: 0.98166 objectReference: {fileID: 0} - target: {fileID: 4357365149916800032, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.14409469 + value: -0.14409474 objectReference: {fileID: 0} - target: {fileID: 4357365149916800032, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.12032232 + value: -0.12032229 objectReference: {fileID: 0} - target: {fileID: 4357365149916800032, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.033209667 + value: -0.03320971 objectReference: {fileID: 0} - target: {fileID: 4357365149916800034, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.96349347 + value: 0.9634935 objectReference: {fileID: 0} - target: {fileID: 4357365149916800034, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.19701827 + value: 0.19701813 objectReference: {fileID: 0} - target: {fileID: 4357365149916800034, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.18125577 + value: -0.18125582 objectReference: {fileID: 0} - target: {fileID: 4357365149916800034, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.0032391306 + value: -0.0032391408 objectReference: {fileID: 0} - target: {fileID: 4357365149916800036, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -6720,57 +7083,57 @@ PrefabInstance: - target: {fileID: 4357365149916800036, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.023076864 + value: -0.023076931 objectReference: {fileID: 0} - target: {fileID: 4357365149916800036, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.021606866 + value: -0.0216068 objectReference: {fileID: 0} - target: {fileID: 4357365149916800036, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.0025523794 + value: -0.0025524371 objectReference: {fileID: 0} - target: {fileID: 4357365149916800038, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.9816589 + value: 0.98165894 objectReference: {fileID: 0} - target: {fileID: 4357365149916800038, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.14446695 + value: -0.14446694 objectReference: {fileID: 0} - target: {fileID: 4357365149916800038, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.119320825 + value: 0.11932081 objectReference: {fileID: 0} - target: {fileID: 4357365149916800038, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.03518047 + value: 0.03518045 objectReference: {fileID: 0} - target: {fileID: 4357365149916800040, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.99948454 + value: 0.9994846 objectReference: {fileID: 0} - target: {fileID: 4357365149916800040, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.020781465 + value: -0.020781407 objectReference: {fileID: 0} - target: {fileID: 4357365149916800040, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.020584278 + value: -0.020584362 objectReference: {fileID: 0} - target: {fileID: 4357365149916800040, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.013231119 + value: 0.013231134 objectReference: {fileID: 0} - target: {fileID: 4357365149916800042, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -6780,217 +7143,217 @@ PrefabInstance: - target: {fileID: 4357365149916800042, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.023076963 + value: -0.023077 objectReference: {fileID: 0} - target: {fileID: 4357365149916800042, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.021607015 + value: 0.021606935 objectReference: {fileID: 0} - target: {fileID: 4357365149916800042, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.0025521729 + value: 0.002552205 objectReference: {fileID: 0} - target: {fileID: 4357365149916800044, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.9920673 + value: 0.99206734 objectReference: {fileID: 0} - target: {fileID: 4357365149916800044, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.06742134 + value: -0.06742143 objectReference: {fileID: 0} - target: {fileID: 4357365149916800044, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.06345734 + value: -0.0634573 objectReference: {fileID: 0} - target: {fileID: 4357365149916800044, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.08502985 + value: 0.085029766 objectReference: {fileID: 0} - target: {fileID: 4357365149916800046, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.99948466 + value: 0.9994846 objectReference: {fileID: 0} - target: {fileID: 4357365149916800046, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.02078122 + value: -0.020781187 objectReference: {fileID: 0} - target: {fileID: 4357365149916800046, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.020584183 + value: 0.020584134 objectReference: {fileID: 0} - target: {fileID: 4357365149916800046, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.013230929 + value: -0.013230835 objectReference: {fileID: 0} - target: {fileID: 4357365149916800048, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.99984354 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800048, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.x - value: -0.009012142 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800048, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.y - value: -0.010956713 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800048, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.z - value: 0.010570766 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800050, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.w - value: 0.99227196 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800050, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.x - value: -0.06767508 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800050, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.y - value: 0.06277876 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800050, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.z - value: -0.08291821 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800052, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.w - value: 0.99050236 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800052, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.x - value: -0.099626526 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800052, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.y - value: -0.09234404 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800052, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.z - value: -0.021266438 - objectReference: {fileID: 0} - - target: {fileID: 4357365149916800054, guid: f249fe40e650a8c4a90aee2b885b941f, - type: 3} - propertyPath: m_LocalRotation.w value: 0.9998435 objectReference: {fileID: 0} + - target: {fileID: 4357365149916800048, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.x + value: -0.00901215 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800048, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.y + value: -0.010956653 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800048, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.z + value: 0.010570785 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800050, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.w + value: 0.9922719 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800050, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.x + value: -0.067675054 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800050, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.y + value: 0.06277878 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800050, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.z + value: -0.08291836 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800052, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.w + value: 0.9905023 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800052, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.x + value: -0.099626705 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800052, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.y + value: -0.09234417 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800052, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.z + value: -0.021266498 + objectReference: {fileID: 0} + - target: {fileID: 4357365149916800054, guid: f249fe40e650a8c4a90aee2b885b941f, + type: 3} + propertyPath: m_LocalRotation.w + value: 0.99984354 + objectReference: {fileID: 0} - target: {fileID: 4357365149916800054, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.00901197 + value: -0.009011971 objectReference: {fileID: 0} - target: {fileID: 4357365149916800054, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.010956891 + value: 0.010956884 objectReference: {fileID: 0} - target: {fileID: 4357365149916800054, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.010570727 + value: -0.010570818 objectReference: {fileID: 0} - target: {fileID: 4357365149916800056, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.98564446 + value: 0.9856445 objectReference: {fileID: 0} - target: {fileID: 4357365149916800056, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.10162553 + value: -0.10162542 objectReference: {fileID: 0} - target: {fileID: 4357365149916800056, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.09266933 + value: -0.09266913 objectReference: {fileID: 0} - target: {fileID: 4357365149916800056, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.09792644 + value: 0.09792635 objectReference: {fileID: 0} - target: {fileID: 4357365149916800058, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.9905945 + value: 0.99059457 objectReference: {fileID: 0} - target: {fileID: 4357365149916800058, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.09849515 + value: -0.09849511 objectReference: {fileID: 0} - target: {fileID: 4357365149916800058, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.09278537 + value: 0.09278534 objectReference: {fileID: 0} - target: {fileID: 4357365149916800058, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.020299023 + value: 0.020299222 objectReference: {fileID: 0} - target: {fileID: 4357365149916800060, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.99994814 + value: 0.9999482 objectReference: {fileID: 0} - target: {fileID: 4357365149916800060, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.0031951158 + value: 0.0031952132 objectReference: {fileID: 0} - target: {fileID: 4357365149916800060, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.0025555994 + value: 0.002555622 objectReference: {fileID: 0} - target: {fileID: 4357365149916800060, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.009327881 + value: 0.009327941 objectReference: {fileID: 0} - target: {fileID: 4357365149916800062, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.98589575 + value: 0.9858957 objectReference: {fileID: 0} - target: {fileID: 4357365149916800062, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.10174668 + value: -0.10174674 objectReference: {fileID: 0} - target: {fileID: 4357365149916800062, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.092113614 + value: 0.09211355 objectReference: {fileID: 0} - target: {fileID: 4357365149916800062, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.09577237 + value: -0.09577252 objectReference: {fileID: 0} - target: {fileID: 4357365149916800068, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7000,57 +7363,57 @@ PrefabInstance: - target: {fileID: 4357365149916800068, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.070452616 + value: 0.07045265 objectReference: {fileID: 0} - target: {fileID: 4357365149916800068, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.034804046 + value: 0.03480405 objectReference: {fileID: 0} - target: {fileID: 4357365149916800068, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.0040071933 + value: 0.0040071937 objectReference: {fileID: 0} - target: {fileID: 4357365149916800070, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.99689937 + value: 0.9968994 objectReference: {fileID: 0} - target: {fileID: 4357365149916800070, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.07045784 + value: 0.07045776 objectReference: {fileID: 0} - target: {fileID: 4357365149916800070, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.03480408 + value: -0.034804083 objectReference: {fileID: 0} - target: {fileID: 4357365149916800070, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.004007054 + value: -0.0040070526 objectReference: {fileID: 0} - target: {fileID: 4357365149916800072, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.986288 + value: 0.9851319 objectReference: {fileID: 0} - target: {fileID: 4357365149916800072, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.017231451 + value: 0.01801391 objectReference: {fileID: 0} - target: {fileID: 4357365149916800072, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.025238717 + value: -0.025587976 objectReference: {fileID: 0} - target: {fileID: 4357365149916800072, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.16217932 + value: 0.16892584 objectReference: {fileID: 0} - target: {fileID: 4357365149916800074, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7060,57 +7423,57 @@ PrefabInstance: - target: {fileID: 4357365149916800074, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.0184151 + value: 0.018414969 objectReference: {fileID: 0} - target: {fileID: 4357365149916800074, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.025393922 + value: 0.025393888 objectReference: {fileID: 0} - target: {fileID: 4357365149916800074, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.17298129 + value: -0.17298138 objectReference: {fileID: 0} - target: {fileID: 4357365149916800080, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.x - value: -0.00000026077038 + value: -0.00000020116572 objectReference: {fileID: 0} - target: {fileID: 4357365149916800080, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.y - value: 0.26173556 + value: 0.26173562 objectReference: {fileID: 0} - target: {fileID: 4357365149916800080, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.z - value: -0.00000043772167 + value: -0.00000022631141 objectReference: {fileID: 0} - target: {fileID: 4357365149916800080, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.99775726 + value: 0.9977573 objectReference: {fileID: 0} - target: {fileID: 4357365149916800080, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.05025311 + value: 0.05025331 objectReference: {fileID: 0} - target: {fileID: 4357365149916800080, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.01820986 + value: 0.018209718 objectReference: {fileID: 0} - target: {fileID: 4357365149916800080, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.04029264 + value: 0.040292382 objectReference: {fileID: 0} - target: {fileID: 4357365149916800082, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.x - value: -3.7834985e-10 + value: -4.947652e-10 objectReference: {fileID: 0} - target: {fileID: 4357365149916800082, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7120,7 +7483,7 @@ PrefabInstance: - target: {fileID: 4357365149916800082, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.z - value: -0.0000000996515 + value: -0.00000012572853 objectReference: {fileID: 0} - target: {fileID: 4357365149916800082, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7130,22 +7493,22 @@ PrefabInstance: - target: {fileID: 4357365149916800082, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.10486604 + value: -0.10486602 objectReference: {fileID: 0} - target: {fileID: 4357365149916800082, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.0025335108 + value: 0.002533511 objectReference: {fileID: 0} - target: {fileID: 4357365149916800082, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.0025860656 + value: 0.002586066 objectReference: {fileID: 0} - target: {fileID: 4357365149916800084, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.x - value: -0.000000013969839 + value: -0.0000000044237822 objectReference: {fileID: 0} - target: {fileID: 4357365149916800084, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7155,7 +7518,7 @@ PrefabInstance: - target: {fileID: 4357365149916800084, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.z - value: -0.00000005215407 + value: -0.0000000074505815 objectReference: {fileID: 0} - target: {fileID: 4357365149916800084, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7165,52 +7528,52 @@ PrefabInstance: - target: {fileID: 4357365149916800084, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.5464048 + value: 0.54640466 objectReference: {fileID: 0} - target: {fileID: 4357365149916800084, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.09537568 + value: -0.09537569 objectReference: {fileID: 0} - target: {fileID: 4357365149916800084, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.049076527 + value: 0.04907652 objectReference: {fileID: 0} - target: {fileID: 4357365149916800086, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.x - value: 0.00000003725291 + value: 0.00000007450582 objectReference: {fileID: 0} - target: {fileID: 4357365149916800086, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.y - value: 0.26173538 + value: 0.2617355 objectReference: {fileID: 0} - target: {fileID: 4357365149916800086, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.z - value: -0.0000004367903 + value: -0.0000005522743 objectReference: {fileID: 0} - target: {fileID: 4357365149916800086, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.99777895 + value: 0.99773645 objectReference: {fileID: 0} - target: {fileID: 4357365149916800086, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.050204087 + value: 0.050352078 objectReference: {fileID: 0} - target: {fileID: 4357365149916800086, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.018634066 + value: -0.01772842 objectReference: {fileID: 0} - target: {fileID: 4357365149916800086, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.039616972 + value: -0.04089548 objectReference: {fileID: 0} - target: {fileID: 4357365149916800088, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7220,22 +7583,22 @@ PrefabInstance: - target: {fileID: 4357365149916800088, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.08539845 + value: -0.0853983 objectReference: {fileID: 0} - target: {fileID: 4357365149916800088, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.094036214 + value: -0.09403623 objectReference: {fileID: 0} - target: {fileID: 4357365149916800088, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.10655147 + value: -0.106551476 objectReference: {fileID: 0} - target: {fileID: 4357365149916800090, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.x - value: 0.00000002374873 + value: 0.0000000060535976 objectReference: {fileID: 0} - target: {fileID: 4357365149916800090, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7245,7 +7608,7 @@ PrefabInstance: - target: {fileID: 4357365149916800090, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.z - value: -0.00000015646224 + value: -0.00000013038519 objectReference: {fileID: 0} - target: {fileID: 4357365149916800090, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7255,7 +7618,7 @@ PrefabInstance: - target: {fileID: 4357365149916800090, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.54640424 + value: 0.5464043 objectReference: {fileID: 0} - target: {fileID: 4357365149916800090, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7265,7 +7628,7 @@ PrefabInstance: - target: {fileID: 4357365149916800090, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.049076397 + value: -0.0490764 objectReference: {fileID: 0} - target: {fileID: 4357365149916800092, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7275,17 +7638,17 @@ PrefabInstance: - target: {fileID: 4357365149916800092, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.1970184 + value: 0.19701833 objectReference: {fileID: 0} - target: {fileID: 4357365149916800092, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.18125592 + value: 0.18125597 objectReference: {fileID: 0} - target: {fileID: 4357365149916800092, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.0032390193 + value: 0.0032390412 objectReference: {fileID: 0} - target: {fileID: 4357365149916800094, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7295,32 +7658,32 @@ PrefabInstance: - target: {fileID: 4357365149916800094, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.08539831 + value: -0.08539819 objectReference: {fileID: 0} - target: {fileID: 4357365149916800094, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.09403609 + value: 0.094036065 objectReference: {fileID: 0} - target: {fileID: 4357365149916800094, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.106551826 + value: 0.10655181 objectReference: {fileID: 0} - target: {fileID: 4357365149916800098, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: -0.3709356 + value: -0.37093556 objectReference: {fileID: 0} - target: {fileID: 4357365149916800098, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.07168156 + value: 0.07168154 objectReference: {fileID: 0} - target: {fileID: 4357365149916800098, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.25457063 + value: -0.2545706 objectReference: {fileID: 0} - target: {fileID: 4357365149916800100, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7330,17 +7693,17 @@ PrefabInstance: - target: {fileID: 4357365149916800100, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.14465636 + value: -0.14465639 objectReference: {fileID: 0} - target: {fileID: 4357365149916800100, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.000000010800766 + value: -0.000000010822015 objectReference: {fileID: 0} - target: {fileID: 4357365149916800100, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.0000000758502 + value: 0.000000075791824 objectReference: {fileID: 0} - target: {fileID: 4357365149916800102, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7350,22 +7713,22 @@ PrefabInstance: - target: {fileID: 4357365149916800102, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.0000000040367927 + value: -0.000000004038538 objectReference: {fileID: 0} - target: {fileID: 4357365149916800102, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.000000012114335 + value: 0.00000001210414 objectReference: {fileID: 0} - target: {fileID: 4357365149916800106, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.x - value: 0.00000007743837 + value: 0.000000077381195 objectReference: {fileID: 0} - target: {fileID: 4357365149916800106, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.y - value: 0.074555755 + value: 0.074555576 objectReference: {fileID: 0} - target: {fileID: 4357365149916800106, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7375,57 +7738,57 @@ PrefabInstance: - target: {fileID: 4357365149916800106, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.7059108 + value: 0.70591074 objectReference: {fileID: 0} - target: {fileID: 4357365149916800106, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.7083007 + value: 0.70830077 objectReference: {fileID: 0} - target: {fileID: 4357365149916800106, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.000000014354504 + value: 0.00000001435451 objectReference: {fileID: 0} - target: {fileID: 4357365149916800106, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.000000014305984 + value: -0.000000014305994 objectReference: {fileID: 0} - target: {fileID: 4357365149916800124, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.x - value: -4.440892e-15 + value: -1.9539925e-14 objectReference: {fileID: 0} - target: {fileID: 4357365149916800124, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.y - value: 0.23304659 + value: 0.23304644 objectReference: {fileID: 0} - target: {fileID: 4357365149916800124, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalPosition.z - value: 0.000000104308164 + value: -0.000000022351749 objectReference: {fileID: 0} - target: {fileID: 4357365149916800124, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.99913603 + value: 0.999136 objectReference: {fileID: 0} - target: {fileID: 4357365149916800124, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.041506365 + value: -0.041506458 objectReference: {fileID: 0} - target: {fileID: 4357365149916800124, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.0016287677 + value: -0.001628768 objectReference: {fileID: 0} - target: {fileID: 4357365149916800124, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.0013518798 + value: -0.0013518799 objectReference: {fileID: 0} - target: {fileID: 4357365149916800384, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7485,12 +7848,12 @@ PrefabInstance: - target: {fileID: 4357365149916800400, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.012629594 + value: 0.012629593 objectReference: {fileID: 0} - target: {fileID: 4357365149916800400, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.026554476 + value: 0.026554478 objectReference: {fileID: 0} - target: {fileID: 4357365149916800400, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7500,17 +7863,17 @@ PrefabInstance: - target: {fileID: 4357365149916800400, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.0061890306 + value: -0.0061890623 objectReference: {fileID: 0} - target: {fileID: 4357365149916800402, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: -0.0122190295 + value: -0.012219031 objectReference: {fileID: 0} - target: {fileID: 4357365149916800402, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.026557904 + value: -0.026557907 objectReference: {fileID: 0} - target: {fileID: 4357365149916800402, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -7520,67 +7883,67 @@ PrefabInstance: - target: {fileID: 4357365149916800402, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.0061829267 + value: -0.006183016 objectReference: {fileID: 0} - target: {fileID: 4357365149916800404, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.9927349 + value: 0.9932955 objectReference: {fileID: 0} - target: {fileID: 4357365149916800404, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.029630933 + value: 0.029380381 objectReference: {fileID: 0} - target: {fileID: 4357365149916800404, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: -0.051438726 + value: -0.051995724 objectReference: {fileID: 0} - target: {fileID: 4357365149916800404, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: 0.104658976 + value: 0.09898153 objectReference: {fileID: 0} - target: {fileID: 4357365149916800406, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.9935379 + value: 0.99353784 objectReference: {fileID: 0} - target: {fileID: 4357365149916800406, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: 0.02914837 + value: 0.029148515 objectReference: {fileID: 0} - target: {fileID: 4357365149916800406, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.05246076 + value: 0.052460857 objectReference: {fileID: 0} - target: {fileID: 4357365149916800406, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.09633687 + value: -0.09633662 objectReference: {fileID: 0} - target: {fileID: 4357365149916800412, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.w - value: 0.37093556 + value: 0.37093553 objectReference: {fileID: 0} - target: {fileID: 4357365149916800412, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.x - value: -0.071681626 + value: -0.07168165 objectReference: {fileID: 0} - target: {fileID: 4357365149916800412, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.y - value: 0.8902036 + value: 0.89020354 objectReference: {fileID: 0} - target: {fileID: 4357365149916800412, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} propertyPath: m_LocalRotation.z - value: -0.25457072 + value: -0.2545707 objectReference: {fileID: 0} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: f249fe40e650a8c4a90aee2b885b941f, type: 3} @@ -9308,7 +9671,7 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1540508303} - m_LocalRotation: {x: -0.02493389, y: 0.104557715, z: -0.029218422, w: 0.9937768} + m_LocalRotation: {x: -0.02442134, y: 0.09887944, z: -0.028986974, w: 0.9943773} m_LocalPosition: {x: -0.17596604, y: 0.000000011292286, z: -0.00000001816079} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: @@ -9500,7 +9863,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: humanoid: {fileID: 406190701} - hipsBaseHeight: -0.0000006556511 + hipsBaseHeight: -0.00000059604645 newSpineIK: 0 torsoAnimator: enabled: 1 @@ -9768,6 +10131,68 @@ LineRenderer: generateLightingData: 0 m_UseWorldSpace: 0 m_Loop: 0 +--- !u!1001 &1716426162 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 1810220956971058, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_Name + value: HumanoidPlayer + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4191195719973714, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 114636771493283014, guid: def06cb2d19a8f74b8f61ea42324f172, + type: 3} + propertyPath: _debug + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: def06cb2d19a8f74b8f61ea42324f172, type: 3} --- !u!1 &1721872685 GameObject: m_ObjectHideFlags: 0