Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. //should scale your shadow depending on each coin lane.
  2. if(y == 500 )// y is equal uppery then will scale to .6 of normal size
  3. {
  4. draw_sprite_ext(shadow,0,x,y+40,.6,.6,0,c_white,1)
  5. }else if (y == 500)//y is equal to middley then will scale to .8 of normal size
  6. {
  7. draw_sprite_ext(shadow,0,x,y+40,.8,.8,0,c_white,1)
  8. } else{ // the spritee will draw normal size on lowery lane.
  9. draw_sprite_ext(shadow,0,x,y+40,1,1,0,c_white,1)
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement