差分

ナビゲーションに移動 検索に移動

MonoGameのカメラを作る

287 バイト追加, 2018年1月16日 (火) 04:16
編集の要約なし
/// カメラの位置
/// </summary>
public Vector3 Position { get { return _position; } set { _position = value; UpdateView(); } }  private Vector3 _position = new Vector3(0, 10, 10);
/// <summary>
/// カメラの焦点
/// </summary>
public Vector3 Target { get { return _target; } set { _target = value; UpdateView(); } }  private Vector3 _target = Vector3.Zero;
/// <summary>
匿名利用者

案内メニュー