Add Skybox plugin

This commit is contained in:
Max Weber
2019-01-05 20:03:05 -07:00
committed by Adam
parent 9a93250c9c
commit 9098d1fa94
9 changed files with 1700 additions and 1 deletions

View File

@@ -1513,6 +1513,16 @@ public interface Client extends GameEngine
*/
void setOculusOrbNormalSpeed(int speed);
/**
* Gets local X coord where the camera is pointing when the Oculus orb is active
*/
int getOculusOrbFocalPointX();
/**
* Gets local Y coord where the camera is pointing when the Oculus orb is active
*/
int getOculusOrbFocalPointY();
/**
* Opens in-game world hopper interface
*/
@@ -1524,6 +1534,16 @@ public interface Client extends GameEngine
*/
void hopToWorld(World world);
/**
* Sets the RGB color of the skybox
*/
void setSkyboxColor(int skyboxColor);
/**
* Gets the RGB color of the skybox
*/
int getSkyboxColor();
boolean isGpu();
void setGpu(boolean gpu);