Преглед изворни кода

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

pull/3032/head
kolunmi пре 1 година
committed by GitHub
родитељ
комит
98cb7a19a1
No known key found for this signature in database GPG Key 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);

Loading…
Откажи
Сачувај