x


Controlling MouseLook script with keys/joystick

Hi,

I'm having trouble getting my fps character to look around with my controller. I've tried mapping the horizontal/vertical input to the joystick's x/y axis but unity doesnt seem to register the stick moving. I've checked in Window's game controller config that the controller is working properly so can only assume it's unity not working somewhere.

My controller's joystick can interpret key presses so thought i would modify the MouseLook script so it used keys on the keyboard instead. It works great for panning the camera but doesn't register when the key isn't being pressed so keeps moving. is there a line of code I can add that will tell the camera only move when unity is receiving input from the user? Or is there another way I can get my controller and Unity talking properly via the x/y axis or key presses??

Any help is much appreciated.

more ▼

asked Oct 26 '10 at 10:26 PM

LSnake2001 gravatar image

LSnake2001
35 9 9 14

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

1 answer: sort voted first
var xSpeed = 250.0;
var ySpeed = 120.0;

var yMinLimit = -20;
var yMaxLimit = 80;

private var x = 0.0;
private var y = 0.0;

@script AddComponentMenu("Camera-Control/Mouse Orbit")

function Start () {
    var angles = transform.eulerAngles;
    x = angles.y;
    y = angles.x;

    // Make the rigid body not change rotation
    if (rigidbody)
        rigidbody.freezeRotation = true;
}

function LateUpdate () {

        x += Input.GetAxis("LookX") * xSpeed * 0.02;
        y -= Input.GetAxis("LookY") * ySpeed * 0.02;

        y = ClampAngle(y, yMinLimit, yMaxLimit);

        var rotation = Quaternion.Euler(y, x, 0);

        transform.rotation = rotation;
}

static function ClampAngle (angle : float, min : float, max : float) {
    if (angle < -360)
        angle += 360;
    if (angle > 360)
        angle -= 360;
    return Mathf.Clamp (angle, min, max);

I managed to get this working by modifying the MouseOrbit script and having an input mapped to w, a, s, d. Duh.

more ▼

answered Oct 30 '10 at 10:19 AM

LSnake2001 gravatar image

LSnake2001
35 9 9 14

(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:

x3013
x956
x525
x215
x162

asked: Oct 26 '10 at 10:26 PM

Seen: 2612 times

Last Updated: Oct 26 '10 at 10:26 PM