Package gaia.cu9.ari.gaiaorbit.interfce
Class LoadingGui
- java.lang.Object
-
- gaia.cu9.ari.gaiaorbit.interfce.AbstractGui
-
- gaia.cu9.ari.gaiaorbit.interfce.LoadingGui
-
public class LoadingGui extends AbstractGui
Displays the loading screen.
-
-
Field Summary
Fields Modifier and Type Field Description protected com.badlogic.gdx.scenes.scene2d.ui.Table
bottom
protected com.badlogic.gdx.scenes.scene2d.ui.Table
center
NotificationsInterface
notificationsInterface
protected com.badlogic.gdx.scenes.scene2d.ui.Container<com.badlogic.gdx.scenes.scene2d.ui.Button>
screenMode
-
Fields inherited from class gaia.cu9.ari.gaiaorbit.interfce.AbstractGui
interfaces, lock, name, skin, ui
-
-
Constructor Summary
Constructors Constructor Description LoadingGui()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
doneLoading(com.badlogic.gdx.assets.AssetManager assetManager)
Hook that runs after the assets have been loaded.void
initialize(com.badlogic.gdx.assets.AssetManager assetManager)
Initializes the GUI, adding all the resources to the asset manager queue for loadingvoid
rebuildGui()
Adds the already created GUI objects to the stage.void
update(double dt)
Updates the GUI-
Methods inherited from class gaia.cu9.ari.gaiaorbit.interfce.AbstractGui
cancelTouchFocus, dispose, findActor, getGuiStage, getName, notify, render, resize, resizeImmediate, setSceneGraph, setVisibilityToggles
-
-
-
-
Field Detail
-
center
protected com.badlogic.gdx.scenes.scene2d.ui.Table center
-
bottom
protected com.badlogic.gdx.scenes.scene2d.ui.Table bottom
-
screenMode
protected com.badlogic.gdx.scenes.scene2d.ui.Container<com.badlogic.gdx.scenes.scene2d.ui.Button> screenMode
-
notificationsInterface
public NotificationsInterface notificationsInterface
-
-
Method Detail
-
initialize
public void initialize(com.badlogic.gdx.assets.AssetManager assetManager)
Description copied from interface:IGui
Initializes the GUI, adding all the resources to the asset manager queue for loading- Parameters:
assetManager
- The asset manager to load the resources with
-
update
public void update(double dt)
Description copied from interface:IGui
Updates the GUI- Specified by:
update
in interfaceIGui
- Overrides:
update
in classAbstractGui
- Parameters:
dt
- Time in seconds since the last frame
-
doneLoading
public void doneLoading(com.badlogic.gdx.assets.AssetManager assetManager)
Description copied from interface:IGui
Hook that runs after the assets have been loaded. Completes the initialization process- Parameters:
assetManager
- The asset manager
-
rebuildGui
public void rebuildGui()
Description copied from class:AbstractGui
Adds the already created GUI objects to the stage.- Specified by:
rebuildGui
in classAbstractGui
-
-