Exemplo n.º 1
0
 public Camera(Viewport _ViewPort)
 {
     this.target = null;
     this.position = new Vector3(0, 0, 0);
     this.zoom = 1.0f;
     this.viewPort = _ViewPort;
     GameLibrary.Peripherals.KeyboardManager.keyboardFocus.Add(this);
 }
Exemplo n.º 2
0
 public void setTarget(Model.Object.LivingObject _Target)
 {
     this.target = _Target;
 }
Exemplo n.º 3
0
 public void setPosition(Vector3 _Position)
 {
     this.target = null;
     this.position = _Position;
 }