draw_shadow.gml 176 B

1234567
  1. function draw_shadow(dx = 10, dy = 10){
  2. draw_sprite_ext(sprite_index, image_index,
  3. x + dx, y + dy, image_xscale, image_yscale,
  4. image_angle, c_gray, 1);
  5. draw_self();
  6. }