Пример #1
0
 protected BaseCamera(Game game, GraphicsDevice graphicsDevice, ViewMatrixSettings viewMatrixSettings) : base(game)
 {
     GraphicsDevice = graphicsDevice;
     ViewSettings   = viewMatrixSettings;
 }
Пример #2
0
 public FirstPersonCamera(Game game, GraphicsDevice graphicsDevice, ViewMatrixSettings viewMatrixSettings) : base(game, graphicsDevice, viewMatrixSettings)
 {
     cameraReference = viewMatrixSettings.Target;
 }