Rename Camera3D near and far getters and setters
Renames: - get_znear() -> get_near() - set_znear() -> set_near() - get_zfar() -> get_far() - set_zfar() -> set_far()
This commit is contained in:
parent
e9d12f9e4e
commit
ecf8ae5bcf
7 changed files with 35 additions and 35 deletions
|
|
@ -802,8 +802,8 @@ void ScriptEditorDebugger::_notification(int p_what) {
|
|||
msg.push_back(true);
|
||||
msg.push_back(cam->get_fov());
|
||||
}
|
||||
msg.push_back(cam->get_znear());
|
||||
msg.push_back(cam->get_zfar());
|
||||
msg.push_back(cam->get_near());
|
||||
msg.push_back(cam->get_far());
|
||||
_put_msg("scene:override_camera_3D:transform", msg);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue