Move to nullify gravity ?

Game Editor comments and discussion.

Move to nullify gravity ?

Postby sonicforvergame » Sat Nov 02, 2013 5:00 pm

well i was working on my game
when i realise that if i add move to action to an actor the gravity that i added to the same actor dosen't count anymore
the actor well ,just float in the air moving to the player

Is there any way for an actor to go to the player with it being on the ground
Note: the actor is chasing the player so i can't just add an x velocity event for the actor or else it will just go one way without chasing the player
Kaizoku ni ore wa naru
User avatar
sonicforvergame
 
Posts: 422
Joined: Sat Sep 01, 2012 2:17 pm
Score: 10 Give a positive score

Re: Move to nullify gravity ?

Postby DarkParadox » Sat Nov 02, 2013 7:54 pm

You can do a sort of if statement like this on the enemy's Draw Actor event:
Code: Select all
if(player.x < x)
{
    xvelocity = -5;
}
else
{
    xvelocity = 5;
}

Which will move the enemy left if the player is to the left, and right if the player is to the right.
User avatar
DarkParadox
 
Posts: 457
Joined: Mon Jan 08, 2007 11:32 pm
Location: USA, Florida.
Score: 84 Give a positive score

Re: Move to nullify gravity ?

Postby sonicforvergame » Sun Nov 03, 2013 10:17 am

yeah that really nice !
thanks
oh and by the way i just wanted to say that you have
264px-Doge_(1).jpg


and one last thing
is there any way that i can make the actor move, at the point that it can be seen in the view?
Kaizoku ni ore wa naru
User avatar
sonicforvergame
 
Posts: 422
Joined: Sat Sep 01, 2012 2:17 pm
Score: 10 Give a positive score

Re: Move to nullify gravity ?

Postby DarkParadox » Sun Nov 03, 2013 4:24 pm

We can add another "IF" statement to make sure it only moves when it's on-screen.
Code: Select all
if(xscreen > (0 - width) && xscreen < view.width && yscreen > (0 - height) && yscreen < view.height)
{
      if(player.x < x)
      {
          xvelocity = -5;
      }
      else
      {
          xvelocity = 5;
      }
}
else
{
    xvelocity = 0;
}


How this works is that && is the AND operator. The code inside will only activate if all four of those conditions are true.
The first one is "xscreen > (0 - width)". This checks if the current actor's horizontal position on the screen (xscreen) is more than "0 - width". The "- width" portion makes sure that if just a pixel of the actor is on screen, it'll still be moving, otherwise it would stop as soon as it got off screen.
Then the second one is "xscreen < view.width", which checks if the actor's horizontal position isn't over the right border of the screen.
Then the same thing is more or less repeated for the actor's vertical position.

Then that last else statement is there so that if one of those conditions isn't met (the actor is off-screen) then we set its xvelocity to 0 so it isn't moving.
User avatar
DarkParadox
 
Posts: 457
Joined: Mon Jan 08, 2007 11:32 pm
Location: USA, Florida.
Score: 84 Give a positive score

Re: Move to nullify gravity ?

Postby Jagmaster » Fri Nov 08, 2013 12:31 am

sonicforvergame wrote:Image

Wow Doge Amaze
Such Meme So Internet

Did not use comic sans Much design Do like
User avatar
Jagmaster
 
Posts: 875
Joined: Sun May 08, 2011 4:14 pm
Location: Not where you think.
Score: 82 Give a positive score

Re: Move to nullify gravity ?

Postby MrJolteon » Fri Nov 08, 2013 5:29 am

Jagmaster wrote:
sonicforvergame wrote:Image

Wow Doge Amaze
Such Meme So Internet

Did not use comic sans Much design Do like

That, my good sir, earned you a point.
Join us on Discord!
Game Editor 2
These are the best ways to reach me these days


Your local Community Janitor, always lurking in the shadows...
User avatar
MrJolteon
 
Posts: 2326
Joined: Sat Aug 09, 2008 3:25 pm
Location: Stranded under endless sky
Score: 105 Give a positive score


Return to GE - General

Who is online

Users browsing this forum: No registered users and 1 guest