- Home /
 
               Question by 
               prashantpandey · Jun 26, 2018 at 11:00 AM · 
                console errors  
              
 
              How Print * in unity Console as we do in c or c#
I need to print the bellow in unity 3d console
                             *
                             * *
                             * * *
                             * * * *
                             * * * * *
               Comment
              
 
               
              Answer by tormentoarmagedoom · Jun 26, 2018 at 11:28 AM
¿? Why you need to print exatcly that in the console?
Anyway, use:
 Debug.Log ("*");
 Debug.Log ("**");
 Debug.Log ("***");
 Debug.Log ("****");
Bye! ;D
Your answer
 
 
             