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); }
public void setTarget(Model.Object.LivingObject _Target) { this.target = _Target; }
public void setPosition(Vector3 _Position) { this.target = null; this.position = _Position; }