Replace the current string.
Font fnt = new Font("samples/font/arial.ttf", 12); Text t1 = new Text(font); Text t2 = new Text(font); t1("My new string"); t2(t1); // now both t's draw 'My new string' on screen.
See Implementation
Replace the current string.