Package ponkOut.graphics

Examples of ponkOut.graphics.GraphicsObjectsManager


    MenuGraphicsObjectsManager.init();
    GameGraphicsObjectsManager.init();
    Font.init();
    Skybox.init();

    goManager = new GraphicsObjectsManager();
    inputManager = InputManager.getInstance();
    currentState = new MenuState(this, null);
    currentState.init();

    fpsText = new HUDText("", 10.0f, 0.8f, 0.8f, 1.0f, 0.9f, new Vector2f(1.0f, 1.0f), showFPS, goManager);
View Full Code Here


  private float textPosY, textPosZ;

  public CreditsState(StateChangeListener listener, State previous) {
    super(listener, previous);

    goManager = new GraphicsObjectsManager();

    scrollPos = 0.0f;

    WorldText ponkOutText = new WorldText("PonkOut", 15.0f, new Color(0.8f, 0.8f, 1.0f, 0.8f), new Vector3f(0.0f,
        0.0f, -150.0f), -45.0f, 0.0f, 0.0f, goManager);
View Full Code Here

TOP

Related Classes of ponkOut.graphics.GraphicsObjectsManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.