is it possible to get a condition that tests if your standing on a platform? like the "Is on ground".
Develop games in your browser. Powerful, performant & highly capable.
Why don't you just add your platforms to a "platforms" family and check if the character overlaps at offset (0,1)? That's what "is on ground" is essentially.
yeah I guess I could just do that +on ground, +not overlapping solid at offset.
I just thought it might be nice to add though
Well, how would you otherwise define what's the 'ground' and what's a 'platform'? Constructs platform behavior just queues whether or not your char is standing on a solid or not.
Families are great for this.