Octubre 24, 2013, 08:12:14 PM Ultima modificación: Octubre 25, 2013, 09:53:06 AM por DeadZone1982
como hago para pausar una imagen durante unos segundos?

Pon el icono del GMS!!!

Según leí se hace con alarmas.

Pues tengo una idea de como hacerlo:
Crea un objeto especial:
//In Create Event
timer = -1
sleeping = 0;
img = -1;

//In step event
if timer >= 0 timer -= 1;
if timer > 0 && sleeping = 0 {img = sprite_create_from_screen(view_xview,view_yview,view_xview+view_width,view_yview+view_height,0,0,0,0)
sleeping  = 1}
if timer == 0 {sleeping = 0}

//In draw event
if sleeping = 1 draw_sprite(img,0,view_xview,view_yview)

Debera funcionar correctamente, ahora para ponerle tiempo simplemente use timer = 10 o cualquier numero, un detalle, este sistema no opera con milisegundos, sino con steps.

Gente, está prohibido contestar en temas que no cumplen las reglas, DeadZone1982 por favor repara el post o lo tengo que cerrar. Saludos!