You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Rename theme properties to include underscores
- check_vadjust -> check_v_adjust - close_h_ofs -> close_h_offset - close_v_ofs -> close_v_offset - commentfocus -> comment_focus - hseparation -> h_separation - ofs -> offset - selectedframe -> selected_frame - state_machine_selectedframe -> state_machine_selected_frame - table_hseparation -> table_h_separation - table_vseparation -> table_v_separation - vseparation -> v_separation
This commit is contained in:
@@ -475,9 +475,9 @@ void Camera3D::_bind_methods() {
|
||||
ClassDB::bind_method(D_METHOD("set_near", "near"), &Camera3D::set_near);
|
||||
ClassDB::bind_method(D_METHOD("get_projection"), &Camera3D::get_projection);
|
||||
ClassDB::bind_method(D_METHOD("set_projection", "mode"), &Camera3D::set_projection);
|
||||
ClassDB::bind_method(D_METHOD("set_h_offset", "ofs"), &Camera3D::set_h_offset);
|
||||
ClassDB::bind_method(D_METHOD("set_h_offset", "offset"), &Camera3D::set_h_offset);
|
||||
ClassDB::bind_method(D_METHOD("get_h_offset"), &Camera3D::get_h_offset);
|
||||
ClassDB::bind_method(D_METHOD("set_v_offset", "ofs"), &Camera3D::set_v_offset);
|
||||
ClassDB::bind_method(D_METHOD("set_v_offset", "offset"), &Camera3D::set_v_offset);
|
||||
ClassDB::bind_method(D_METHOD("get_v_offset"), &Camera3D::get_v_offset);
|
||||
ClassDB::bind_method(D_METHOD("set_cull_mask", "mask"), &Camera3D::set_cull_mask);
|
||||
ClassDB::bind_method(D_METHOD("get_cull_mask"), &Camera3D::get_cull_mask);
|
||||
|
||||
Reference in New Issue
Block a user