Code: Select all
i=GET_SCREEN();
fade(255,255,255,64); // Pantalla Blanca
while(fading)frame;end
fade(128,128,128,2); // Pantalla vuelve a normal
while(fading)frame;end
...
...
...
Code: Select all
i=GET_SCREEN();
fade(255,255,255,64); // Pantalla Blanca
while(fading)frame;end
fade(128,128,128,2); // Pantalla vuelve a normal
while(fading)frame;end
...
...
...
Eso tampoco es correcto erkosone.erkosone wrote:Code: Select all
i=GET_SCREEN(); ...
Code: Select all
SCREEN_COPY(INT region, INT fpg_id, INT graph, INT x, INT y, INT width, INT height);
GET_SCREEN(INT fpg_id, INT graph);Code: Select all
set_mode(640,480,32);
graph_capture=new_map(640,480);
get_screen(0,graph_capture);
...![[RETO]: 20lineas - [JUEGO]: eLaberinto [RETO]: 20lineas - [JUEGO]: eLaberinto](../space/silver_medal.png)
![[CONCURSO]: EL JUEGO DEL VERANO 2011 - [JUEGO]: PlayaBall [CONCURSO]: EL JUEGO DEL VERANO 2011 - [JUEGO]: PlayaBall](../space/bronze_medal.png)
Es logico que te capture el fade, la funcion captura el buffer en el momento de la llamada, si hay efectos en este momento, te los captura, deberias procurar de no capturarla mientra hay fadiding activo.simulatorone wrote: De todas formas raras veces me falla el get_screen(),
Cual es la forma correcta de usarlo?
O asi?Code: Select all
get_screen();//obtenemos la captura de pantalla frame;//refrescamos la imagen fade(255,255,255,64);frame; fade(128,128,128,2);//simulamos el flash de una camara de fotos
Code: Select all
frame;//refrescamos la imagen get_screen();//obtenemos la captura de pantalla fade(255,255,255,64);frame; fade(128,128,128,2);//simulamos el flash de una camara de fotos
Es que algunas veces cuando hago captura de pantalla con esta funcion, pocas veces, me captura el Fade!!
Lo sé, va mu bien con FLV para youtube.simulatorone wrote:Por cierto este programa: Free Screen to Video V1.2
funciona de maravilla!
![[RETO]: 20lineas - [JUEGO]: eLaberinto [RETO]: 20lineas - [JUEGO]: eLaberinto](../space/silver_medal.png)
![[CONCURSO]: EL JUEGO DEL VERANO 2011 - [JUEGO]: PlayaBall [CONCURSO]: EL JUEGO DEL VERANO 2011 - [JUEGO]: PlayaBall](../space/bronze_medal.png)