ソースを参照

ensure distance is greater than 0 in CameraMoveToTarget (#3031)

pull/3032/head
kolunmi 1年前
committed by GitHub
コミット
98cb7a19a1
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/rcamera.h

+ 1
- 1
src/rcamera.h ファイルの表示

@ -294,7 +294,7 @@ void CameraMoveToTarget(Camera *camera, float delta)
distance += delta;
// Distance must be greater than 0
if (distance < 0) distance = 0.001f;
if (distance <= 0) distance = 0.001f;
// Set new distance by moving the position along the forward vector
Vector3 forward = GetCameraForward(camera);

読み込み中…
キャンセル
保存