Class DemoIsometric

java.lang.Object
nl.colorize.multimedialib.tool.DemoIsometric
All Implemented Interfaces:
Scene

public class DemoIsometric extends Object implements Scene
Demo application that displays isometric "pseudo-3D" or "2.5D" graphics using the 2D renderer.
  • Constructor Details

    • DemoIsometric

      public DemoIsometric()
  • Method Details

    • start

      public void start(SceneContext context)
      Description copied from interface: Scene
      Initialization logic that should be performed when the scene is started. Note that this method is called *every* time the scene is started, not just the first time.

      This method is optional, the default implementation does nothing.

      Specified by:
      start in interface Scene
    • update

      public void update(SceneContext context, float deltaTime)
      Description copied from interface: Scene
      Called during every frame update for as long as the scene is active. deltaTime indicates the elapsed time since the last frame, in seconds.
      Specified by:
      update in interface Scene