x


Tank Setup Problem

Hey guys, what's up? I need your help, cuz i'm having some problems with a tank setup. I'm making a tank game, and i'm in the alpha stage, but i'm already having problems. Well, i'm trying to setup a tank with the following scripts:

var velocidade = 0.0;

function Update () {

var acelerar = Input.GetAxis("Vertical") * velocidade * Time.deltaTime;

rigidbody.AddRelativeForce(Vector3(0,0,acelerar));

}

and

var velocidadeDeRotacao = 100;

function Update(){

var virar = Input.GetAxis("Horizontal") * velocidadeDeRotacao * Time.deltaTime;

transform.Rotate(Vector3.up * virar * Time.deltaTime);

}

The first script controls the aceleration of the tank, and the second controls the rotation of the tank. Its working very well, but i want more. I want to controls the tank's body and the tank's tower independently. I'm using a mouse look script in the tower. I want to when i turn around the body, the tower don't move together. So i can control them independently. That's it, thank you and sorry by me poor English, its because i'm Brazillian and 13 years old.

Edit: This is the hierarchy:

Tank(Empty GameObject to correct the axis) Tank (Mesh) Top (Empty GameObject to group the objects below) Canon (Mesh) Tower (Mesh) Main Camera (Camera) Bottom (Empty GameObject to group the objects below) Body (Mesh) Wheels and tracks (Mesh)

more ▼

asked Jan 24 '11 at 08:25 PM

Henrique Dantas gravatar image

Henrique Dantas
171 7 7 16

Jun 09 at 03:04 PM vagho
(comments are locked)
10|3000 characters needed characters left

1 answer: sort voted first

I solved it myself :D Thanks!

more ▼

answered Feb 14 '11 at 11:23 PM

Henrique Dantas gravatar image

Henrique Dantas
171 7 7 16

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

x60
x47
x15

asked: Jan 24 '11 at 08:25 PM

Seen: 884 times

Last Updated: Jun 09 at 03:04 PM