Merge pull request #6712 from lordadamson/issue6012
fix #6012 exposed setters and getters of Camera H/V offset to GDScript
This commit is contained in:
commit
0a2826b6ba
1 changed files with 8 additions and 4 deletions
|
@ -648,6 +648,10 @@ void Camera::_bind_methods() {
|
|||
ObjectTypeDB::bind_method( _MD("get_zfar"),&Camera::get_zfar );
|
||||
ObjectTypeDB::bind_method( _MD("get_znear"),&Camera::get_znear );
|
||||
ObjectTypeDB::bind_method( _MD("get_projection"),&Camera::get_projection );
|
||||
ObjectTypeDB::bind_method( _MD("set_h_offset","ofs"),&Camera::set_h_offset );
|
||||
ObjectTypeDB::bind_method( _MD("get_h_offset"),&Camera::get_h_offset );
|
||||
ObjectTypeDB::bind_method( _MD("set_v_offset","ofs"),&Camera::set_v_offset );
|
||||
ObjectTypeDB::bind_method( _MD("get_v_offset"),&Camera::get_v_offset );
|
||||
ObjectTypeDB::bind_method( _MD("set_visible_layers","mask"),&Camera::set_visible_layers );
|
||||
ObjectTypeDB::bind_method( _MD("get_visible_layers"),&Camera::get_visible_layers );
|
||||
ObjectTypeDB::bind_method( _MD("set_environment","env:Environment"),&Camera::set_environment );
|
||||
|
|
Loading…
Reference in a new issue