diff --git a/Project Undercover/Assets/Resources/ScriptableObjects/Interactions/Handshake.asset b/Project Undercover/Assets/Resources/ScriptableObjects/Interactions/Handshake.asset index 83537b2..377a45c 100644 --- a/Project Undercover/Assets/Resources/ScriptableObjects/Interactions/Handshake.asset +++ b/Project Undercover/Assets/Resources/ScriptableObjects/Interactions/Handshake.asset @@ -16,6 +16,6 @@ MonoBehaviour: initiatorAnimationTrigger: 6 objectAnimationTrigger: 6 result: 0 - initialRotation: 0 + initialRotation: 35 objectInitialRotation: 0 - interactionDistance: 1.2 + interactionDistance: 1.4 diff --git a/Project Undercover/Assets/Resources/ScriptableObjects/Interactions/TellSecret.asset b/Project Undercover/Assets/Resources/ScriptableObjects/Interactions/TellSecret.asset index b511aba..7d5f250 100644 --- a/Project Undercover/Assets/Resources/ScriptableObjects/Interactions/TellSecret.asset +++ b/Project Undercover/Assets/Resources/ScriptableObjects/Interactions/TellSecret.asset @@ -18,4 +18,4 @@ MonoBehaviour: result: 1 initialRotation: -60 objectInitialRotation: -60 - interactionDistance: 1 + interactionDistance: 1.5 diff --git a/Project Undercover/Assets/Scripts/CharacterStateMachine/StateController.cs b/Project Undercover/Assets/Scripts/CharacterStateMachine/StateController.cs index 1bb5306..3c5da2c 100644 --- a/Project Undercover/Assets/Scripts/CharacterStateMachine/StateController.cs +++ b/Project Undercover/Assets/Scripts/CharacterStateMachine/StateController.cs @@ -18,8 +18,8 @@ public class StateController : SelectableObject private SelectableObject _selectedObject; private Interaction _selectedInteraction; private Coroutine _roamCoroutine; - private static float _startInteractionProgressLimit = 0.3f; - private static float _endInteractionProgressLimit = 0.8f; + private static float _startInteractionProgressLimit = 0.1f; + private static float _endInteractionProgressLimit = 1.0f; void Awake() {