Quantcast
Channel: Questions in topic: "state machine"
Viewing all articles
Browse latest Browse all 42

What is the proper way to implement a 180 turn while running (Plant and turn) animation?

$
0
0
Hello, I'm kind of in bind here. We're entering a contest in the coming weeks and I still can't make our Plant And Turn (180 rotation while running) animation work properly.

I'm hoping someone with experience can help. It would mean a lot to fix this.

**Our setup:**
We use root motion for forward movement and the rotation is handled in script relative to the player's orientation and the screen.

The "inputMagnitude" parameter is used in a blend tree to define if the player is in "slow walk", "walk", "jog" or "run" animation and an euler angle rotation (0 and 360 being in front of the player) is pushed to the animator to trigger the plant and turn animations.

Here are the current "plant and turn" transition conditions:

Plant and turn left:
upload_2019-12-10_16-30-4.png

Plant and turn right:
upload_2019-12-10_16-29-44.png

For the exit transition "Has exit time" is checked and "Exit time" is set to 1
I realize they are some gaps in the RelativeEulerDir coverage but it's not what's causing my problems.

**Problem 1:**
I'm having problems making the end rotation of the "plant and turn" line up with user input. The animation's rotation does a fixed 180 turn and once the animation finishes if the user's input is not perfectly aligned the player's rotation appears to snap when it catches up to the input position.

Note that input driven rotation is disabled when in the "plant and turn" state and when transitioning in and out of it, which is part of the problem but I can't let both the input and the animation drive the rotation.

I tried several things to make it work:
- Completely overriding the root rotation and letting the input drive it - Disabling the root rotation once RelativeEulerDir = 0 - Disabling the root rotation once RelativeEulerDir <= toleranceValue (like 0.1, 1, 5) - Using a long transition time

I could try using the remaining animation time with the current rotation and the input to scale the animation's rotation so it ends flush with the input but that would create new problems like... what if the player changes direction radically?

**Problem 2:**
Triggering the plant and turn not always reliable. On the keyboard it's easier (the change in direction is quite direct) but when using a game pad it's another story. We have to flip the joystick in the opposite direction quite fast/hard for it to work otherwise the inputMagnitude drops too fast.

Lowering the inputMagnitude works but then users walking at a slower pace can initiate a plant and turn if they try real hard.

Adding a velocity check could fix this but the velocity I get from unity's character controller is quite jittery, almost seems like movement from the animations gets added on top.

**FYI:** We use Rewired, that's why you see player.GetAxis, but beside that it's the same as Unity's input.

All parameters are updated in Update().

**Input is refreshed as follows:**
inputVector.x = player.GetAxis ("Horizontal"); inputVector.y = player.GetAxis ("Vertical"); inputVectorRaw.x = player.GetAxisRaw ("Horizontal"); inputVectorRaw.y = player.GetAxisRaw ("Vertical");
**Animation parameters are pushed using hashes:** animator.SetFloat(hash_InputX, inputVector.x); animator.SetFloat(hash_InputY, inputVector.y); animator.SetFloat(hash_InputMagnitude, inputMagnitude); animator.SetFloat(hash_InputMagnitudeRaw, inputMagnitudeRaw); animator.SetFloat(hash_Velocity, currentVelocity);
**This code handles rotation and sets the RelativeEulerDir:**
// Get targetDirection relative to the camera in world space (filtered input for keyboard) Vector3 targetDirection = Camera.main.transform.TransformDirection(new Vector3(inputVector.x, 0f, inputVector.y)); // Get targetDirectionRaw relative to the camera in world space (raw input for accuracy with animator) Vector3 targetDirectionRaw = Camera.main.transform.TransformDirection(new Vector3(inputVectorRaw.x, 0f, inputVectorRaw.y)); // Make sure Y is zeroed targetDirection.y = 0; targetDirectionRaw.y = 0; // Init target rotations Quaternion targetRotation = Quaternion.identity; Quaternion targetRotationRaw = Quaternion.identity; // Translate targetDirectionRaw to player's local space Vector3 playerRelativeTargetDirRaw = transform.InverseTransformDirection(targetDirectionRaw); // Get the target rotations required to rotate the player to the target directions if (targetDirection != Vector3.zero) targetRotation = Quaternion.LookRotation(targetDirection, Vector3.up); if (playerRelativeTargetDirRaw != Vector3.zero) targetRotationRaw = Quaternion.LookRotation(playerRelativeTargetDirRaw); // Rotate the player transform transform.rotation = Quaternion.RotateTowards(transform.rotation, targetRotation, freeRunRotationSpeed * Time.deltaTime); // Inform the animator of the requested rotation animator.SetFloat(hash_RelativeEulerDir, targetRotationRaw.eulerAngles.y);
Can someone help?

Viewing all articles
Browse latest Browse all 42

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>