Quantcast
Channel: Latest Questions by Grievemourne
Viewing all articles
Browse latest Browse all 51

How do I rotate accurately over time while ignoring other axis's?

$
0
0
I have a rotation that I want to happen over time, but can't really use slerp or lerp (as far as I know), because I need to allow for dynamic movement and rotation over that period. I've currently been using function with a regular transform.rotate along with a countdown using a comparison between a float variable and time.deltatime, but it does not grant me the accuracy that I need as when the function is called several times. I just need it to move along the world axis, with which the function works fine short of this problem. I've tried several fixed and unfixed variants to make it more accurate, but It's not working. Using slerp earlier caused the player to be trapped in limbo, constantly moving toward the target rotation, but not being able to leave it. It's also very inefficient since I just want to rotate it a set amount without restricting the other rotations of the player, which I can't seem to with (s)lerp; I don't know how to get it to ignore the other axis's. function Update() { if (rotateBackFlip == true){ if (backFlipTime > 0){ targetScript.myPlayer.Rotate(Vector3.right * degreesPerSecond * Time.deltaTime , Space.World); backFlipTime -= Time.deltaTime; } } }

Viewing all articles
Browse latest Browse all 51

Trending Articles



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