Hello all, I am fairly new to Python, as well as Pythonista. I wanted to know if there is a way to change a LabelNode text overtime using the scene timer. I tried executing my code in the update function but it just keeps overlapping tons of text instead of altering the existing one. What am I doing wrong?
```
from scene import *
import sound
import random
import math
A = Action
class MyScene (Scene):
def setup(self):
self.clock = 0
self.background_color = 'black'
self.label = LabelNode(str(self.clock), font=('Courier', 40), color='white', position=(self.size.w/2, self.size.h/2), parent=self)
def update(self):
self.clock += int(self.t)
self.label = LabelNode(str(self.clock), font=('Courier', 40), color='white', position=(self.size.w/2, self.size.h/2), parent=self)
if name == 'main':
run(MyScene(), show_fps=False)```