Tutorial Bennu ''for dummies''

Started by Futu-block, March 15, 2011, 03:26:54 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Futu-block

vamos a ver, no te rayes, primero pon el text_z = 256;
el problema reside en que en el codigo que has puesto al pulsar f se repite lo de delete_text tantas veces por frame; tampoco tienes una tecla aparte que la haga aparecer;

modificano un poco el tuto del interruptor te deberia quedar una cosa asi:

[code language="bennu"]
loop   
      if (key(_i) and !pulsao)
         pulsao = true;
         if (onoff == true)
            onoff = false;
         else
            onoff = true;
         end
      end
      if (!key(_i) and pulsao)
         pulsao = false;
      end

      if (onoff == true)
         graph = 2; text_z = 256; // si es correcto el texto se vá al fondo
      else
         graph = 1; text_z = -256; // si es falso el texto se vá al frente
      end

[/code]

tambien puede ser al reves, si es cierto se vá al frente...