PHP ver gevorderde |
|
Hallo.
Vanop een website heb ik een code gevonden om een auto realistisch te laten bewegen, alleen wil hij niet naar voor of achter gaan.
Wat is hier fout aan?
onClipEvent (enterFrame) {
//This code will advance the car forward.
if (Key.isDown(Key.UP)) {
speed += 1;
}
// This will make the car go backwards
if (Key.isDown(Key.DOWN)) {
speed -= 1;
}
//The car will start to slow down after the speed of 25
if (Math.abs(speed)>25) {
speed *= .6;
}
// This will change the angle of the car
if (Key.isDown(Key.LEFT)) {
_rotation -= 15;
}
if (Key.isDown(Key.RIGHT)) {
_rotation += 15;
}
// This will make the car move
speed *= .98;
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 *= -.6;
}
}
onClipEvent (enterFrame) { //This code will advance the car forward. speed += 1; } // This will make the car go backwards speed -= 1; } //The car will start to slow down after the speed of 25 if (Math .abs(speed )>25) { speed *= .6; } // This will change the angle of the car _rotation -= 15; } _rotation += 15; } // This will make the car move speed *= .98; 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 *= -.6; } }
Alvast thx
Greetz Mothzone
edit: hij kan wel draaien, maar meer niet
|