Exemplo n.º 1
0
 protected BaseCamera(GraphicsDevice graphicsDevice, ViewMatrixSettings viewMatrixSettings)
 {
     GraphicsDevice = graphicsDevice;
     ViewSettings   = viewMatrixSettings;
 }
Exemplo n.º 2
0
 public FirstPersonCamera(GraphicsDevice graphicsDevice, ViewMatrixSettings viewMatrixSettings) : base(graphicsDevice, viewMatrixSettings)
 {
     cameraReference = viewMatrixSettings.Target;
 }