jme.locale.external.feature
Interface Sky

All Known Implementing Classes:
SkyBox, SkyDome

public interface Sky

Sky defines an interface for creation of skies. Sky is meant to encapsulate the Locale with some sort of geometry, with an image inside the geometry conveying a sense of distance.

Version:
0.1.0
Author:
Mark Powell

Method Summary
 float getSize()
          getSize returns the size of the sky object.
 void render()
          render displays the Sky to the window.
 void update(float time)
          update updates the sky.
 

Method Detail

update

public void update(float time)
update updates the sky. If there is any animation to be done, it will happen here.

Parameters:
time - the time value for frame independant timing.

render

public void render()
render displays the Sky to the window.


getSize

public float getSize()
getSize returns the size of the sky object.

Returns:
the size of the sky object.