YesNoOk
avatar

two hurttboxes colliding (Read 2260 times)

Started by ryuhoshi490, January 08, 2024, 01:58:56 am
Share this topic:
two hurttboxes colliding
#1  January 08, 2024, 01:58:56 am
  • **
    • Colombia
    • arfercon@gmail.com
Hi.
I'm trying to make a super where two characters attack at the same time flying across the screen and end up colliding in the middle of the screen.
I know how to make the main character fly and attack, but
¿should the another be a helper or an explod?
And how do I make them collide and stop in the middle of the screen?
I already know all the basics of making a character and I already know how to make attacks and supers, but I can't find a tutorial with something similar to this. thanks

Re: two hurttboxes colliding
#2  January 08, 2024, 05:19:03 am
  • avatar
  • **
    • USA
Technically, it could be either, but it's a lot better if it's a helper because the helper can have a working hitdef and create its own hitsparks.  For the motion itself, just have the owner move a specific way, and the helper stops moving when it's a certain distance from the owner.  Basically, rather than the owner and helper actually colliding, you just fake it by referencing position.  This way, you can avoid glitches with things like simul mode or different stage lengths.
Re: two hurttboxes colliding
#3  January 08, 2024, 01:33:22 pm
  • **
    • Colombia
    • arfercon@gmail.com
thanks NotAGoodName , I´ll try that