Limiting rotation in 2 axis'
I have spent many many hours working on something unsuccessfully and am just shy of given up, I wrote out this question once already and my sleeping girlfriend decided to roll over my mouse and somehow...
View ArticleHow to Rotate Y axis of an Object toward virtual joystick direction
Hi I'm creating a third-person game which uses virtual analog/joystick. I have a player and i want it rotate toward the virtual joystick direction. I'm a beginner and i don't know so far about this....
View Articlehow to rotate bullet towards target direction?unity2D
i've problem to rotate bullet towards in enemydirection in unity 2D.is there another way to do this instead of lookrotation?(i think this works only in unity 3D , because for rotating in unity2d we...
View ArticleHead rotation is working on editor but not android phone
Hello everyone, I have a humanoid character and I am using Slerp to make its head rotate toward a certain point. To override the animations that I am using I added this part in LateUpdate. Everything...
View ArticleQuaternion Slerp/Lerp doesn't work
Hi, I want to create smooth rotation of flashlight movement in the wrist. Everything works fine now, but I cannot get smooth rotation from original angles to new angles by using slerp or lerp...
View ArticleHow to make character rotate in the direction of movement and direction of...
[Here][1] is an example of what I am trying to accomplish that I found when trying to find a solution I am attempting to make a third person character controller with 8 direction movement where the...
View Articlefew question about quaternion slerp
hi everyone. i have a coroutine that looks like this private IEnumerator StartRotation( Quaternion curPos, Quaternion targetPos, float t ) { float counter = 0; while ( counter < t) { counter +=...
View Articlehow to rotate a gameobject back and forth smoothly ,How to rotate a...
Hello. So I am have a gameobject that needs to rotate backwards smoothly wait for a few seconds and then rotate back to its original position again smoothly.Here is my code: using System.Collections;...
View ArticleHelp with Quaternion.Slerp movement?
Hey, I've been having some trouble with a quaterion.slerp code. I want the movement of my object to rotate based on the wasd key press. It works, for the most part. However, my object keeps rotating 90...
View ArticleQuaternion.Slerp is not working as Quaternion.Euler has weird values
I just want a simple Rotation in the Y Axis with random values and have following code: private void Rotate() { rotation = Random.Range(-360.0f, 360.0f); print(rotation); Quaternion qRotation =...
View ArticleQuaternion.slerps resets camera rotation to (0,0,0) when i go to play mode...
i am building a camera rotation script like in fps. Everything is setup and working except that camera rotation resets to zero at the start of game which i dont want. This is the camera rotation i...
View ArticleQuaternion.Slerp issue
I'm trying to rotate my camera using Quaternion.Slerp. I'm getting the desired rotation angle, but it's snapping to the rotation. I declared a float called "elapsed" and attempted to increment it...
View ArticleQuaternion.slerp messing with wrong axies
So I'm trying to write a script to rotate my sled between -10 and 10 degrees on the X axis when pressing the left and right arrow keys respectively. What currently happens is that the sled will flip...
View ArticleQuaternion.Slerp() behaves weirdly when turning to look at moving object
So I've got some giant bugs that I'm trying to have chase the player around the scene. Quaternion.Slerp() has worked to rotate the bugs to look at the player while they're chasing him, for the most...
View ArticleRotation by Quaternion Slerp problems
Im still facing issues with Rotation by either quaternion.Slerp or lerp. I do something wrong, but i cannot see it. In this example, i just want to simply rotate the cover of a chest on the x axis by...
View ArticleRotating clockwise or counter clockwise using Quaternions and PID
Given the code below, the object would begin facing to the right, and if something changed **yawState** to either back or forward orientations you'd see it orient itself to face that direction. Now,...
View ArticleMaking Player Rotation Smoother
I need help making my player rotation smoother. Right now, whenever the camera is facing a different direction than the player is facing, if I press forward with the player controls, he snaps into the...
View Article[SOLVED] How to LookRotation in only Y axis
Hi guys, I'm 4-5 days since started unity noob and I'm just making a game, the problem is that I want to program the **movement** for the camera what just look with smooth movement at the Player, and...
View ArticleHow to offset an object's rotation using Lerp.
I have 2 objects 'a' and 'b' I want object b to have the same rotation as a, but when I press or hold 'W' i want object b to have a small offset on the X-axis making it seem to tilt forward a bit when...
View ArticleClock script with custom time not working
I've been trying to create a script for the clock for which you can enter start and end times manually, but for some reason it doesn't seem to work. I'm very new at this so I understand the fact that...
View Article