oculus setter

This commit is contained in:
weblue
2021-09-29 19:47:43 -10:00
parent 9715e2f263
commit 32a6f51484
2 changed files with 18 additions and 0 deletions

View File

@@ -1877,6 +1877,16 @@ public interface Client extends GameEngine
*/ */
int getOculusOrbFocalPointY(); int getOculusOrbFocalPointY();
/**
* Sets local X coord where the camera is pointing when the Oculus orb is active
*/
void setOculusOrbFocalPointX(int xPos);
/**
* Sets local Y coord where the camera is pointing when the Oculus orb is active
*/
void setOculusOrbFocalPointY(int yPos);
/** /**
* Opens in-game world hopper interface * Opens in-game world hopper interface
*/ */

View File

@@ -880,6 +880,14 @@ public interface RSClient extends RSGameEngine, Client
@Override @Override
int getOculusOrbFocalPointY(); int getOculusOrbFocalPointY();
@Import("oculusOrbFocalPointX")
@Override
void setOculusOrbFocalPointX(int state);
@Import("oculusOrbFocalPointY")
@Override
void setOculusOrbFocalPointY(int state);
RSTileItem getLastItemDespawn(); RSTileItem getLastItemDespawn();
void setLastItemDespawn(RSTileItem lastItemDespawn); void setLastItemDespawn(RSTileItem lastItemDespawn);