Skip to main content
Formatting.
Source Link
Vaillancourt
  • 16.4k
  • 17
  • 56
  • 61

Finally! After 3 Days i Found The Solution :

1/ i created a new script

2/attached it to the 3d Text

3/Add code to changedays, I found the textsolution:

time-= Time.deltatime; // CountingDown GetComponent<TextMesh>().text = time.ToString("0");// Show the countdown inn the 3d text

  1. I created a new script

  2. attached it to the 3d Text

  3. Add code to change the text:

     time-= Time.deltatime; // CountingDown
     GetComponent<TextMesh>().text = time.ToString("0"); // Show the countdown in the 3d text
    

Finally After 3 Days i Found The Solution :

1/ i created a new script

2/attached it to the 3d Text

3/Add code to change the text:

time-= Time.deltatime; // CountingDown GetComponent<TextMesh>().text = time.ToString("0");// Show the countdown inn the 3d text

Finally! After 3 days, I found the solution:

  1. I created a new script

  2. attached it to the 3d Text

  3. Add code to change the text:

     time-= Time.deltatime; // CountingDown
     GetComponent<TextMesh>().text = time.ToString("0"); // Show the countdown in the 3d text
    
Source Link

Finally After 3 Days i Found The Solution :

1/ i created a new script

2/attached it to the 3d Text

3/Add code to change the text:

time-= Time.deltatime; // CountingDown GetComponent<TextMesh>().text = time.ToString("0");// Show the countdown inn the 3d text