chevybow
0
Q:

unity do something when button is pressed second time

 private int lastPressed = 0;

 if (something something)
         {
             lastPressed++;
 
             if (lastPressed > 1)
             {
                 // run code

                 // reset button lastPressed to 0
                 lastPressed = 0;
             }
         }

0

New to Communities?

Join the community