Package nl.colorize.multimedialib.scene
Interface Scene
-
- All Superinterfaces:
Renderable,Updatable
- All Known Implementing Classes:
ComplexScene,DemoApplication
public interface Scene extends Updatable, Renderable
Represents a discrete part or phase of an application, that is active for some period of time. Simple applications might consist of a single scene, complex applications can have dozens.Scenes will receive updates at various points throughout their life cycle: when a scene starts, either because the scene is explictly started or because it's the application's initial scene; during frame updates, and when rendering.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstart(SceneContext context)-
Methods inherited from interface nl.colorize.multimedialib.scene.Renderable
render
-
-
-
-
Method Detail
-
start
void start(SceneContext context)
-
-