Platform Builder Forums

Main => Suggestions => Topic started by: Antikore on January 13, 2020, 08:13:30 AM

Title: Check if player its on air
Post by: Antikore on January 13, 2020, 08:13:30 AM
Title explains by itself.
Title: Re: Check if player its on air
Post by: Gizgord on January 13, 2020, 02:47:50 PM
right. I think that's a given.
Title: Re: Check if player its on air
Post by: War on January 13, 2020, 03:26:03 PM
Title explains by itself.
Yup, it would be really practical.
Title: Re: Check if player its on air
Post by: CGM on January 13, 2020, 07:51:09 PM
Already possible:

if falling=true
Title: Re: Check if player its on air
Post by: Antikore on January 14, 2020, 07:10:07 AM
Already possible:

if falling=true
Sure that would work?
Title: Re: Check if player its on air
Post by: Gizgord on January 14, 2020, 07:22:57 AM
Sure that would work?
it should.
now that I think about it, maybe this could work:

if jumping = true & if falling = true
Title: Re: Check if player its on air
Post by: CGM on January 14, 2020, 03:14:23 PM
I knew I was missing the jumping part.
Title: Re: Check if player its on air
Post by: TingThing on January 23, 2020, 01:56:41 AM
it should.
now that I think about it, maybe this could work:

if jumping = true & if falling = true


Close, but I think you would want:
if jumping = true or falling = true

Both of them will never be true at the same time.
Title: Re: Check if player its on air
Post by: CGM on January 23, 2020, 02:30:22 AM
Never thought of that.
Title: Re: Check if player its on air
Post by: War on January 23, 2020, 09:07:37 AM

Close, but I think you would want:
if jumping = true or falling = true

Both of them will never be true at the same time.
Wow, you're really smart! 👏