Advertisement
Guest User

Untitled

a guest
Oct 14th, 2018
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. //colisao horizontal
  3. if (place_meeting(x+vel_h,y,obj_rocha))
  4. {
  5.     while(place_meeting(x+sign(vel_h),y,obj_rocha))
  6.     {
  7.         x+=sign(vel_h);
  8.     }
  9.     vel_h=0;
  10.  
  11.     if (place_meeting(x,y,obj_rochacomrosto))
  12.     {
  13.         while(!place_meeting(x+sign(vel_h),y,obj_rochacomrosto))
  14.         {
  15.             x+=sign(vel_h);
  16.         }
  17.         vel_h=0;
  18.     }
  19.     x+=vel_h;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement