This is a simplified code from what I'm trying to do:

var angle = 1.57;
if ( this.transform.rotation.y > angle ){
  this.transform.rotation.y--;
} else if ( this.transform.rotation.y < angle ){
  this.transform.rotation.y++;
}

I'm used to code in AS3, and if I do that in flash, it works perfectly, though in Unity3D it doesn't, and I'm having a hard time figuring out why, or how could I get that effect.

Can anybody help me? Thanks!

edit:

my object is a rigidbody car with 2 capsule colliders driving in a "bumpy" floor, and at some point he just loses direction precision, and I think its because of it's heirarchical rotation system.

(thanks to kay for the transform.eulerAngles tip)

link|improve this question
2  
Did you know that Unity has its own dedicated Stack Exchange website? You may have more dedicated answers there. – rotoglup Feb 16 at 22:22
2  
Technically, answers.unity3d.com isn't a Stack Exchange member. It's provided by Qato, and open source clone. But yes, there is a dedicated community support site for Unity there. – Leniency Feb 16 at 22:32
I agree it's a pretty good and very valuable resource, and I'm posting there from time to time but I don't like their reputation system: An accepted answer is worth 0 points. Maybe a bit childish but spending every day 15 minutes something on answering is little bit like the game I'm developing :-) – Kay Feb 16 at 23:43
Unity is not called Unity3D. Your second if statement is unnecessary because you're dealing with floats. Your code results in non-normalized quaternions, which are not acceptable as rotation values. – Jessy Feb 17 at 17:58
feedback

2 Answers

transform.rotation retrieves a Quaternion. Try transform.rotation.eulerAngles.y instead.

link|improve this answer
actually I did, but the object is a rigidbody car with 2 capsule colliders driving in a "bumpy" floor, and at some point he just loses direction precision, and I think its because of it's heirarchical rotation system... I'm adding this information to the question so people can see it better. – William Feb 17 at 17:24
Did you try transform.localRotation? – Erdemus May 3 at 11:25
feedback

Transform Rotation is used for setting an angle, not turning an object, so you would need to get the rotation, add your change, and then set the new rotation.

Try using transform.rotate instead.

Check the Unity3d scripting reference here: http://unity3d.com/support/documentation/ScriptReference/Transform.Rotate.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.