First time here? First time here? Newsletter Signup Newsletter
651326 Members and growing! | Flash Jobs
Search tutorials
Author: John Bannister | Website: http://

Realistic Car Movement

The car tutorials I have seen have a good system but just don't hit 'realistic' to me.

This is a modified version of Mathew Dennis' 'Creating realistic car movements' tutorial with a few upgrades. Made in MX but it might work in earlier versions.

First, create the car movie clip.

Insert the folowing code into the clips actions :

  onClipEvent (enterFrame) {
  //When key UP is pressed, speed is increased
  if (Key.isDown(Key.UP)) {
  speed += 1;
  } else {
  //When key DOWN is pressed, speed is decreased
  if (Key.isDown(Key.DOWN)) {
  speed -= 1;
  } else {
  //If UP or DOWN aren't pressed then the speed decreases

  speed *= .9
  }
  }
  //The car will start to slow down after the speed of 25
  if (Math.abs(speed)>25) {
  speed *= .6;
  }
  //Turns the car left
  if (Key.isDown(Key.LEFT)) {
  _rotation -= speed;
  }
  //Turns the car right
  if (Key.isDown(Key.RIGHT)) {
  _rotation += speed;
  }
  //Moves the car
  speed *= .9;
  x = Math.sin(_rotation*(Math.PI/180))*speed;
  y = Math.cos(_rotation*(Math.PI/180))*speed*-1;
  if (!_root.move.hitTest(_x+x, _y+y, true)) {
  _x += x;
  _y += y;
  } else {
  speed *= -.3;
  }
  }
» Level Basic

Added: 2004-07-02
Rating: 7 Votes: 27
(10 being the highest)
» Author
Just messing around in Flash trying to get a decent site up.
» Download
Download the files used in this tutorial.
» Forums
More help? Search our boards for quick answers!

Comments

  • There are no comments yet. Be the first to comment!

  • You must have javascript enabled in order to post comments.

Leave a Comment
  • Your email address will not be published. All fields are required.
Featured Flash FLA
» Author: S.Saipriya
» Title: Flash Fire Effect
» Description: This tutorial explains about how to create Fire Effect in Flash of Actionscript 2.0.I hope this tutorial helps you!
Featured Sound Loops
Image for equalize

Audio Player

» Author: Aidan Crouzet-Pascal
» Title: Falling Star
» Description: This loop is a cool sounding, E minor loop.
Latest Font
» Author: Fábio FAFERS
» Description: I created this font for free use. Everyone can apply it in personal or business texts. Its free, but I want to be communicated in case of business use. Donations are accepted to keep the project of free fonts alive! Thank you all
Featured Sound Fx
Image for equalize

Audio Player

» Author: Brandan Paulin
» Description: Epic sounding loop with Brass, Percussion, Strings and Winds. This is actually part of a Loop Pack called the Coming where you can download the rest of the loops that go with it FREE from my website.