ActionScript 2.0 :: Velocity - Collisions At An Angle

Aug 14, 2008

I can sorted Vertical and Horizontal collision. But I'm having trouble with collisions at an angle, e.g. a 45 degree ramp. My cousin says I have to work out the trajectory angle from the Xv and Yv but the closest I can get is:PHP Code:

[Code]...

View 2 Replies


Similar Posts:


Actionscript 3 :: Constrain B2Bodys' Linear Velocity Angle

Nov 27, 2010

I want to force the linear velocity direction of a b2Body to be within certain bounds.

View 1 Replies

ActionScript 3.0 :: Deflection Velocity - Use That Angle To Move The Character Away From The Object?

Apr 17, 2012

I am trying to make a little game its just a project to help me get my head around the maths,I receive an angle and I want to use that angle to move the character away from the object are there any good tutorials for understanding this principle, or even what the term is for this?

View 7 Replies

ActionScript 3.0 :: Separate Touching Collisions From Overlapping Collisions?

Nov 22, 2010

I'm working on a game (my first) where objects touching is A-Ok, but I want to detect overlapping collisions ahead of time, prevent them, and react. This seems like a pretty basic and common thing, such as a character walking along a platform (even though by touching it it's 'colliding'), but of all the many many collision detection tutorials I've looked at, none of them have covered this case--they all assume that objects touching should be indistinguishable from overlapping. I've been using a workaround of a slightly smaller hitbox to use for collisions, but it has issues of it's own that make it not so good. So basically I'm looking to redo my CD from scratch.

So, like I said, I'd like to know how to differentiate between 'touching' collisions and overlapping collisions, but even a way to keep touching collisions from triggering entirely would work.

View 9 Replies

ActionScript 2.0 :: Make The Bar To Move From Angle A To Angle B Smoothly?

Feb 9, 2005

Ive made this rotation with AS. But Id like to make the bar to move from angle A to angle B smoothly.

How can I do this?

View 2 Replies

Javascript :: Animation With Initial Velocity?

Apr 1, 2010

I've been trying to solve this problem for a number of days now but I must be missing something.

Known Variables:
vi = Initial Velocity
t = Animation Duration
d = Distance.
end velocity should always be zero

The function I'm trying to create: D(0...t) = the current distance for a given time

Using this information I want to be able to create a smooth animation curve with varying velocity (ease-in/ease-out).

The animation must be able ease-in from an initial velocity.

The animation must be exactly t seconds and must be travel exactly d units.

The curve should lean towards the average velocity with acceleration occurring at the beginning and the end portions of the curve.

I'm open to extra configuration variables.

The best I've been able to come up with is something that doesn't factor in the initial velocity.

View 4 Replies

ActionScript 3.0 :: Change Velocity Between Some Points?

Sep 3, 2009

I'm looking for the way to make a change of velocity between two o more points... I've an aircraft flying on the sky and it's following a bezier curve based on an array that contains several points (x,y)...So..i need to make a change in a from a determined point to the end, o just to another point ( think...that this Aircraft will be crash with another, so i need the params to avoid the collision.

View 1 Replies

ActionScript 2.0 :: Use Mouse Velocity As Action?

Mar 15, 2010

Is it possible to trigger an action with rapid mouse movement? This is my script

Quote:

on(rollOver){
startDrag(this,true);
dragging = true;
}

[code]....

Is it possible to change the 'release' with an action that refers to rapid mouse movement?this object is following your mouse(cursor), but when I quickly move the mouse I have to loose the object.

View 5 Replies

ActionScript 3.0 :: Velocity Of Multiple Child's?

Apr 28, 2010

I'm having some problems when adding multiple instances of a movie clip then controlling their movement. I had it working fine when I was only adding one child. With the code I currently have 20 versions of the movieclip are added to the screen but don't more. I just want them to float up and once out of screen new ones added.

Code:
private function addBubbles():void {
var list:Array=[];
for (var i:int=0; i<20; i++) {
var newBubble:bubbleMC = new bubbleMC();

[code].....

View 3 Replies

ActionScript 3.0 :: Get Current Velocity Of Tweening Object?

Nov 22, 2010

We got an object tweening from point A to point B, and we can learn a few things from it using the onUpdate function.The program can be constantly storing it's actual x/y position and compare it to the previous position, versus time elapsed.I've seen several approaches but none seemed very impressive.Also, perhaps there is an engine (or more) that can return the object's current speed via the unUpdate function.How would YOU retrieve the object's current speed/velocity (pixels per second or millisecond) during a tween ?

View 11 Replies

ActionScript 3.0 :: Get A Ship To Move With A Thruster And Retain Its Velocity?

Dec 1, 2010

I'm trying to get a ship to move with a thruster and retain its velocity

here's the code
Code:
package
{
import flash.display.Sprite;

[Code]...

View 4 Replies

Cant Get Collisions To Work

Jan 23, 2009

I am making a game and I cant get my collisions to work. I will give a link to the files because I use external .as files.

View 1 Replies

ActionScript 2.0 :: Any Way To Check Collisions By Arrays?

Apr 16, 2010

I am trying to apply code to all instances of the enemy that appear randomly but I've run into problems. Firstly the enemies appear when you press space and the collision doesn't seem to work. I kind of thought you have to push the enemies into an array and hitTest that array right?

Actionscript Code:
stop();
var ship_speed:Number = 10;var lazer_speed:Number = 20;
var enemy_speed:Number = 8;var lazertimer:Number = 0;
var basicenemy:Number = 0;var enemytime:Number = 0; var enID:Number = 0;
var enemies:Array =[]onEnterFrame = function() {
[Code] .....

View 8 Replies

ActionScript 2.0 :: Flash Car Collisions / Hit Test

Sep 5, 2010

I've been using flash for a long time. I know some stuff, but not enough for what I am trying to do. Basically, I am making a little car minigame of a car in a city. This is my engine on the car:

onClipEvent(load){
speed =0 ;
} onClipEvent (enterFrame) {
if (Key.isDown(Key.UP)) {
speed += 0.4;
} if (Key.isDown(Key.DOWN)) {
speed -= 0.1;
[Code] .....

I am fine with all of it but the collisions, as the car will only bounce when the registration point of the car collides with 'wall', so it looks all funny and that and the car goes into any thing collable half way then bounces back, and occasionally gets stuck in the wall. Reall annoying. Ive tried fixing it but whenever I remove the hittest parts the car wont even move or turn. How to get the wall collides with the car (27.7 x 13) and not the registration. I need a strong engine which works with curves as well, and requires me just putting the code into the car, but if I have to put it into the walls/frame i suppose its okay, but theres no way im going through every single building and that.

Also, it would be cool if:
-An engine where when reversing the steering is reversed (like irl)
-The car doesnt bounce backwards when driving at a wall at an angle, but slides against it (like irl).

View 9 Replies

Actionscript 3 :: Detecting Collisions In Flash... Or A Better Way Of Doing It?

Jan 4, 2011

I'm trying to create a air-hockey game, in flash using AS3.At the moment, I am using an enter frame function to check the positioning of the 3 objects, 2 paddles and a ball, then it checks to see if they are in contact, if they are it then initiates a detect collision function.However it's checking every time the frame is loaded, and at 25 fps, this is quite a lot and the app lags.

View 3 Replies

ActionScript 2.0 :: Psuedo 3d Collisions Using Spheres

Feb 29, 2004

I'm having a bit of trouble with psuedo 3d collisions using spheres. I'm using _xscale and _yscale to emulate the z-axis (no horizon point), and am having trouble determining the distance between the objects on the z-axis based upon their relative scales.I'm not concerned at this moment with creating new vectors based upon hit angles, just getting the z-index collision detection working. (I also need to tweak the code to prevent trapping, so much todo)Here's the code, the issue is how do I determine the correct value for the z-axis in the hittest?note-this only works when I publish in flash6 when using mx2004, the collision detection doesn't work at all when published for flash7?[code]

View 7 Replies

ActionScript 2.0 :: Test Collisions Than HitTest?

Mar 15, 2007

Is there any faster way to test collisions than hitTest? I remember an example here on kirupa, but I can't find it.

View 1 Replies

ActionScript 3.0 :: Undetected Collisions In Loop?

Feb 9, 2009

I've been experimenting with circle vs. circle collisons. Ive been using the code below to check for collisions and seperate the objects.It works just fine, except in conditions where more than two circles are touching at the same time. For example, if three circles or more are colliding at the same time, they can sometimes overlap and then struggle to separate.

I think I know why this is happening. The code loops through the object array and checks for a collision between each object one at a time and alters their positions and velocities. The problem is that if it finds a collision between objects at the end of the array, the positions of the objects could be changed in such a way that they cause an overlap with an object that was checked earlier, for which no collision was detected. This new collision then goes undetected and this flaw is amplified when the loop runs again.

Code:
function circleCollision(circleOne:MovieClip, circleTwo:MovieClip):void
{
//Find radius, x and y positions of circleOne
var circleOne_Radius = circleOne.width/2;
var circleOne_X = circleOne.x;

[code]....

View 3 Replies

ActionScript 3.0 :: Break Out Clone Collisions

Mar 20, 2011

Im trying to make a breakout clone which I have working however I cant figure out how to test which side of the blocks the ball hits. I woul like to have a different reaction if it collides with the right side than if it hit the bottom etc.

View 2 Replies

ActionScript 1/2 :: Use The HitTest Function To Check For Collisions

Apr 17, 2009

I know you use the HitTest function to check for collisions, but how would I do that the moment a movie clip is dynamically created. So the moment the clip is created it would check if it is overlapping another clip. Also, does it matter if the clips are at different depths?

View 1 Replies

Flex :: Detect Visual Collisions Between Objects?

May 3, 2010

I would like to avoid the tags overlapping each other in this small Flex project: I've this small FLEX project: [URL]..

The items are LinkButtons. How can I check if they are colliding or not ?

View 1 Replies

Flash :: Using A Custom Event To Listen For Collisions?

Feb 13, 2012

I'm new to flash and programming in general but am learning it to make games. I'm currently messing around with hit detection and its not to hard to test in the game tick ( fired from onEnterFrame). What I'm wondering is if it would be possible / useful to create a custom event that i can listen for. And make the eventListener hear when a collision happens. Also would this be better or worse for the cpu than testing the collisions of lots of enemies on a screen?

View 2 Replies

Actionscript 3 :: HitTestPoint() Not Testing For Collisions Correctly?

Feb 22, 2012

I'm writing a game and it has enemies and bullets. When a bullet hits an enemy, I want to destroy the enemy and the bullet. I'm using the hitTestPoint() method to test if a bullet has hit an enemy. Here's the code in my game loop:

[Code]...

The problem is, hitTestPoint only returns true if both the x and y values of bullet and enemy are the same, rather than if the two movie clips overlap. This leads to bullets going right through enemies but it not registering as a hit. Perhaps I'm missing a bounding box?

Is there a way I can make hitTestPoint return true if the bullet hits the enemy at all rather than only if the bullet and enemy co-ordinates are the same?

View 2 Replies

ActionScript 2.0 :: Avoiding Class Collisions / Overwrites

Dec 30, 2009

I'm working with AS2 and running into a problem when loading a bunch of SWFs that share classes. I have a main SWF that loads several child swfs. The main and the children often share some core classes. The issue is that these SWFs were not all created at the same time, and some of the core classes have changed between SWF compilations. It appears that the first instance of any class to load gets used for all following references to that class - regardless of which version of that class was used in compiling the following SWFs.In AS3, the ApplicationDomain can be set to circumvent this issue, is there any that can be done in AS2 to avoid this collision/overwriting?

View 9 Replies

ActionScript 3.0 :: Detecting Collisions For Different Parts Of Single Mc

Feb 6, 2010

I have a movie clip 'Player'.I want to divide the mc into two equal halves p1 and p2 for collision detection (p1 and p2 are joined together physically).i.e. if ball collides with p1, i do something and if ball collides with p2, i do something else.But i dont want to create 2 different players p1 and p2 for that.i want to have something like p1 and p2 are a single movie clip 'Player', but still can be accessed separately.

View 6 Replies

ActionScript 2.0 :: Testing For Collisions Between Rotated Objects

Oct 14, 2006

I'm writing a general physics engine and I've come across the problem I've always had with flash. So far all my hittests in my physics engine have been calculated by using x/y coordinates and the 2 objects dimensions. This has worked fine for the objects so far because they have been very square-ish and do not rotated. How ever now I am trying to detect if 2 rotated objects are hitting. How can I do this ? I would really like to avoid using any .hitTest() functions.

View 5 Replies

ActionScript 2.0 :: Draw Lines And Detect The Collisions?

Oct 22, 2007

I am looking to create a drawing component on a site. that should be straight forward.the issue lies with the fact that I would want to detect any collisions say (4) and then attach MC's to the collision points.in a nut shell.can I get a trace of the drawn path on the stage?????from there I guess I can detect any positional similarities?

View 8 Replies

ActionScript 3.0 :: How To Stunt Pilot-esque Collisions

Sep 4, 2010

I know how to do various types of collisions and also know how to scroll a background. I'm sort of having trouble putting two and two together for how a game like stunt pilot knows if a plane has gone through a ring vs hitting it... It's for an iphone game (objective c w/ sparrow framework) just I figured it would be easier to figure out in flash then I can bring that knowledge over to my iPhone

View 1 Replies

ActionScript 3.0 :: Multiple Collisions - Create An Array For The Rock?

Sep 22, 2011

its me again I posted destroying MovieClips a few days ago now I'm working on the same project (you can probably tell I'm a beginner) and a new problem occurred I need a way to test if the EvilSlingFuzit collides with a rock, but there is more than one rock. I tried to create an array for the rock, but the rocks are created by the SlingFuzit so the Sling fuzit would have to do something like this:

[Code]...

View 0 Replies

ActionScript 2.0 :: Detect Collisions Between Movie Clips And A Line?

Nov 26, 2004

How do I detect collisions between movie clips and a line created through actionscript (with the lineStyle, lineTo, etc. commands). I tried making the line inside a movie clip and doing a hitTest with that movie clip, but it did nto work.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved