x


Making this rotation instant...

I've kinda burned myself out working so much on these scripts, and I haven't been able to figure this part out. I have this section of the Locomotion project which aligns a character to the center of gravity. So if the character is running around the planet, he'll rotate along it, and gravity pulls him "down". But sometimes if he goes too fast, the rotation direction won't work quickly enough. And since gravity pulls him to his "down", (and his "down" is pointing some other direction now) he'll go flying in another direction.

I can fix the gravity issue later, but it's this rotation that's really bugging me.

What's a good method of making this transition instant?

private void AdjustToGravity() {
        int origLayer = gameObject.layer;
        gameObject.layer = 2;

        Vector3 currentUp = transform.up;
        //Vector3 gravityUp = (transform.position-gravityCenter).normalized;

        float damping = Mathf.Clamp01(Time.deltaTime*5);

        RaycastHit hit;

        Vector3 desiredUp = Vector3.zero;
            if ( Physics.Raycast(transform.position, transform.up*-1, out hit, 30.0f, groundLayers.value) ) {
                desiredUp += hit.normal;
            }

        desiredUp = (currentUp+desiredUp).normalized;
        Vector3 newUp = (currentUp+desiredUp*damping).normalized;

        float angle = Vector3.Angle(currentUp,newUp);
        if (angle>0.01) {
            Vector3 axis = Vector3.Cross(currentUp,newUp).normalized;
            Quaternion rot = Quaternion.AngleAxis(angle,axis);
            transform.rotation = rot * transform.rotation;
        }


        gameObject.layer = origLayer;
    }
more ▼

asked Jun 08 '10 at 06:53 AM

Tuah gravatar image

Tuah
153 22 23 29

(comments are locked)
10|3000 characters needed characters left

2 answers: sort voted first

I don't know much about character animation... but, if the character is a rigid body, you can turn on "interpolate" in the Rigidbody portion in the inspector window for your character... that might work.

Good luck!

Ryder

more ▼

answered Jun 08 '10 at 07:23 AM

Ryder gravatar image

Ryder
182 4 5 16

This made the rotation exactly as I needed. As Mr. Johansen said, as "instant" as I had wanted ended up being less than my already-low expectations.

This system is going to be more of a "suction-cup-boot" system as mentioned, since it will only be activated at high speeds.

Thanks to both of you!

Jun 08 '10 at 04:10 PM Tuah
(comments are locked)
10|3000 characters needed characters left

These lines are responsible for the smoothing:

desiredUp = (currentUp+desiredUp).normalized;
Vector3 newUp = (currentUp+desiredUp*damping).normalized;

If you want an instant transition, change it to this instead:

Vector3 newUp = desiredUp.normalized;

However, note that this may not actually produce desirable results.

  1. Your character will "pop" into a new alignment whenever he walks onto a surface with a different normal.

  2. This system will not catch all cases no matter if it's smooth or not. If a character walks off a 90 degree edge of a roof, he will never "see" the wall and thus not be aligned to walk on the wall but rather just fall down.

  3. The system is very bad when the character is jumping / in the air - it's potentially worse the further away from the surface he is. In worst case it can cause jitter / oscillation of the rotation.

In conclusion, the method should be thought more to simulate "suction cup boots" / "magnetic boots" that only have any effect while on a surface - and has limitations even then, and it's really not very suitable for simulating gravity.

more ▼

answered Jun 08 '10 at 08:27 AM

runevision gravatar image

runevision ♦♦
8.1k 29 46 112

(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x3331
x2168
x462
x205
x98

asked: Jun 08 '10 at 06:53 AM

Seen: 1155 times

Last Updated: Jun 08 '10 at 08:11 AM