소스 검색

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 키 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);

불러오는 중...
취소
저장