Can't turn Y axis if terrain Hugging
I just recently applied code that would make it so that the character would terrain hug i.e. change angle according to the angle of the terrain underneath them. The problem is that I'm terrible with...
View ArticleHow can I rotate an object to a specific angle over time.
I have looked at quaternions and slerp but it's all really confusing to me for some reason. Ideally I want to have an object rotate from (0, 0, 0) to (0, 180, 0) over time. I tried to do it but it...
View ArticleLerping Quaternion Eulers.
Is there anyway to Lerp/Slerp these values so that it takes time to reach them, and it isn't just instant. Vector3 dir = target.transform.position - turretBase.transform.position; Vector3 dir1 =...
View ArticleCamera orbit to specific point on object?
Hey guys. I'm using the MouseOrbitImproved script to orbit around an object in my project, and that's all working perfectly fine. http://wiki.unity3d.com/index.php?title=MouseOrbitImproved The objects...
View ArticleHelp convert kinematic style movement to Forces.
Hi, sorry to bother you guys. I'll get to the point: I have this code for moving an object towards a point, it also slowly turns the object towards the target. So, instead of moving in a straight line,...
View Articlesmooth rotate around x-axis using quaternion.slerp
hi all, i want to rotate sphere around x-axis by the amount of displacement made by via dragging mouse in vertical direction on screen. how to calculate the angle as per dragging distance by which...
View Articlequaternion sleep (trying to make slower turns?)
hey gang, trying to fix my quaternion.slerp so it slowly turns to face the target, but it spins really fast (doesn't seem to matter if TurnSpeed is 12, or 0.1) its always at the same speed rather then...
View ArticleBy-pass the 'shortest route' aspect of Quaternion.Slerp
Hey, when using Quaternion.Slerp for rotating an object, the function will pick the shortest path to get to that position. Is there any way to bypass this and force the direction of the rotation...
View ArticleEnemy rotation while looking. Help.
Hello every one! I have a script that makes the enemy AI look around for me. If I have my flashlight on, he can spot me from greater distance. However, when he spots me and I get closer, the enemy...
View ArticlePreventing a gameobject from looking upwards?
I have a gameobject that looks at another gameobject above it using Quaternion.Slerp. I want the gameobject on the ground to look in the direction of the other gameobject in the air but I don't want it...
View ArticleLimiting 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 ArticleQuaternion.Slerp rotating immediately not over time
I am trying to create a camera system akin to the DSi/3DS version of Persona or Demon Gaze for the PS Vita. The problem is when I rotate the camera, it snaps to the end rotation immediately rather than...
View ArticleProblem with gameObjects rotation when reaching target
Hi, I'm having a problem with getting my game character to rotate towards its target. Whenever it detects its target it always rotates to the same angle instead of rotating to face the target no matter...
View Articlewhy does the quaternion slerp occur instantly?
void OnTriggerEnter (Collider other) { if (other.tag == "swordrange") { rb.angularVelocity = new Vector3 (0f, 0f, 0f); while (Quaternion.Angle(transform.rotation,qt)>.1f) { transform.rotation =...
View ArticleRotation with respect to world instead of the object itself using Quaternion...
> this.transform.rotation = Quaternion.Lerp(this.transform.rotation, Quaternion.Euler(xtimesHit*90,ytimesHit*90,ztimesHit*90), Time.deltaTime*speed); The above code is rotating my object w.r.t...
View Article