Class CamRecorder

java.lang.Object
gaiasky.desktop.util.camera.CamRecorder
All Implemented Interfaces:
IObserver

public class CamRecorder extends Object implements IObserver
Contains the logic to record the camera state at each frame. The format is as follows: > time[s](float) cam_pos(double x3) cam_dir(double x3) cam_up(double x3)

The time is the time in seconds since the start of the recording, to synchronize with the current FPS in playing mode.

  • Field Details

    • instance

      public static CamRecorder instance
      Singleton
  • Constructor Details

    • CamRecorder

      public CamRecorder()
  • Method Details

    • initialize

      public static void initialize()
    • update

      public void update(ITimeFrameProvider time, Vector3b position, Vector3d direction, Vector3d up)
    • notify

      public void notify(Events event, Object... data)
      Description copied from interface: IObserver
      Event notification call.
      Specified by:
      notify in interface IObserver
      Parameters:
      event - The event type.
      data - The data associated with this event.