First time here? First time here? Newsletter Signup Newsletter
651326 Members and growing! | Flash Jobs
Search tutorials
Author: Katnap Kaos

Making a ship with Thrust and Friction

On the Stage, make a movieClip and name it 'ship' or 'player' or whatever will identify the MC as YOU! Go Back to the Main Stage and name the MC's Instance the same as you named the MC (Once again, you don't have to name it the same, just as long as you can identify it). Make it look like a small space ship. Now Put this script into it's action box:

onClipEvent (load) {
	thrust = 1;
	decay = .99;
	maxSpeed = 15;
}
onClipEvent (enterFrame) {
	if (Key.isDown(Key.RIGHT)) {
		_rotation += 10;
	}
	if (Key.isDown(Key.LEFT)) {
		_rotation -= 10;
	}
	if (Key.isDown(Key.UP)) {
		xSpeed += thrust*Math.sin(_rotation*(Math.PI/180));
		ySpeed += thrust*Math.cos(_rotation*(Math.PI/180));
		flames._visible = 1;
	} else {
		xSpeed *= decay;
		ySpeed *= decay;
		flames._visible = 0;
	}
	speed = Math.sqrt((xSpeed*xSpeed)+(ySpeed*ySpeed));
	if (speed>maxSpeed) {
		xSpeed *= maxSpeed/speed;
		ySpeed *= maxSpeed/speed;
	}
	_y -=ySpeed;
	_x +=xSpeed;

	if (_y<0) {
		_y = 400;
	}
	if (_y>400) {
		_y = 0;
	}
	if (_x<0) {
		_x = 550;
	}
	if (_x>550) {
		_x = 0;
	}
}
_________________________ Now, enter the 'ship' MC and create a new MC, and call it 'flames'. Make the flames look like they are coming out of the engine (or something). Test your movie and enjoy!
» Level Intermediate

Added: 2003-11-26
Rating: 6 Votes: 72
(10 being the highest)
» Author
I mainly use Flash 5.
» 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.