浏览代码

Made comments on raylib.h match those present in rcamera.h (#3942)

Signed-off-by: Tomas Fabrizio Orsi <torsi@fi.uba.ar>
pull/3949/head
Tomas Fabrizio Orsi 1年前
committed by GitHub
父节点
当前提交
80d318461f
找不到此签名对应的密钥 GPG 密钥 ID: B5690EEEBB952194
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. +5
    -5
      src/raylib.h

+ 5
- 5
src/raylib.h 查看文件

@ -913,11 +913,11 @@ typedef enum {
// Camera system modes
typedef enum {
CAMERA_CUSTOM = 0, // Custom camera
CAMERA_FREE, // Free camera
CAMERA_ORBITAL, // Orbital camera
CAMERA_FIRST_PERSON, // First person camera
CAMERA_THIRD_PERSON // Third person camera
CAMERA_CUSTOM = 0, // Camera custom, controlled by user (UpdateCamera() does nothing)
CAMERA_FREE, // Camera free mode
CAMERA_ORBITAL, // Camera orbital, around target, zoom supported
CAMERA_FIRST_PERSON, // Camera first person
CAMERA_THIRD_PERSON // Camera third person
} CameraMode;
// Camera projection

正在加载...
取消
保存