i have this in my script:
if (oAsteroid1.X == 802)
however i need something like:
if (oAsteroid1.X == >802)
to show that if the x value is ever GREATER than 802 something needs to happen. Is there a simple way to do this?
if (oAsteroid1.X == 802)
however i need something like:
if (oAsteroid1.X == >802)
to show that if the x value is ever GREATER than 802 something needs to happen. Is there a simple way to do this?