Я сделал это так:
Сначала я создал новый класс под названием Hud. Реализуется Disposable
из-за управления ресурсами. Затем вам нужно определить Stage
для вашего контента и новый, viewport
потому что будет использоваться новая камера. Вам нужно определить новый, Table
который вы можете добавить в Stage
. Вы можете добавить свой контент, table
как обычно. Остальная часть кода, который я приведу, чтобы показать, как он работает, зависит от конкретной игры, поэтому просто проигнорируйте его.
public class Hud implements Disposable{
public Stage stage;
private Viewport viewport;
//score && time tracking variables
private Integer worldTimer;
private float timeCount;
private static Integer score;
private boolean timeUp;
//Scene2D Widgets
private Label countdownLabel, timeLabel, linkLabel;
private static Label scoreLabel;
public Hud (SpriteBatch sb){
//define tracking variables
worldTimer = 250;
timeCount = 0;
score = 0;
//setup the HUD viewport using a new camera seperate from gamecam
//define stage using that viewport and games spritebatch
viewport = new FitViewport(GetTheTriforce.V_WIDTH, GetTheTriforce.V_HEIGHT, new OrthographicCamera());
stage = new Stage(viewport, sb);
//define labels using the String, and a Label style consisting of a font and color
countdownLabel = new Label(String.format("%03d", worldTimer), new Label.LabelStyle(new BitmapFont(), Color.WHITE));
scoreLabel =new Label(String.format("%06d", score), new Label.LabelStyle(new BitmapFont(), Color.WHITE));
timeLabel = new Label("LEFTOVER TIME", new Label.LabelStyle(new BitmapFont(), Color.WHITE));
linkLabel = new Label("POINTS", new Label.LabelStyle(new BitmapFont(), Color.WHITE));
//define a table used to organize hud's labels
Table table = new Table();
table.top();
table.setFillParent(true);
//add labels to table, padding the top, and giving them all equal width with expandX
table.add(linkLabel).expandX().padTop(10);
table.add(timeLabel).expandX().padTop(10);
table.row();
table.add(scoreLabel).expandX();
table.add(countdownLabel).expandX();
//add table to the stage
stage.addActor(table);
}
public void update(float dt){
timeCount += dt;
if(timeCount >= 1){
if (worldTimer > 0) {
worldTimer--;
} else {
timeUp = true;
}
countdownLabel.setText(String.format("%03d", worldTimer));
timeCount = 0;
}
}
public static void addScore(int value){
score += value;
scoreLabel.setText(String.format("%06d", score));
}
@Override
public void dispose() { stage.dispose(); }
public boolean isTimeUp() { return timeUp; }
public static Label getScoreLabel() {
return scoreLabel;
}
public static Integer getScore() {
return score;
}
}
а затем в Playscreen, как это:
Прежде всего вам нужна переменная для ссылки на ваш HUD, как:
private Hud hud;
а затем в конструкторе вы создаете новый экземпляр вашего класса:
hud= new Hud();
в методе обновления вам нужно поместить эти строки кода, так как я думаю, что вы хотите отобразить некоторую информацию об игре, такую как очки или оставшиеся жизни:
hud.update();
в методе рендеринга сделайте это:
//Set batch to now draw what the Hud camera sees.
game.batch.setProjectionMatrix(hud.stage.getCamera().combined);
hud.stage.draw();
и, в конце концов, не забудьте избавиться от лишнего в методе утилизации
Надеюсь, это поможет
camera.project(Vector3 screenCoords)
чтобы проецировать что-то от мировых координат до экранных шнуров.