I am creating a game with a simple scoring system, is there a simple way to display ints on the scene screen without using actors?


1 | public void showText(java.lang.String Score, 10 , 10 ); |
1 2 | public var Score = 0 public void showText(java.lang.String var Score, 10 , 10 ); |
1 | showText( "Score: " +Score, 10 , 10 ); |
1 | public void showText(String score, int x, int y); |
1 | public void showText(String score, int x, int y) {} |