Removes type information from method binds
This commit is contained in:
parent
1e74f27f8f
commit
2f290038d6
140 changed files with 603 additions and 603 deletions
|
|
@ -819,7 +819,7 @@ float Environment::get_fog_height_curve() const {
|
|||
void Environment::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("set_background", "mode"), &Environment::set_background);
|
||||
ClassDB::bind_method(D_METHOD("set_sky", "sky:Sky"), &Environment::set_sky);
|
||||
ClassDB::bind_method(D_METHOD("set_sky", "sky"), &Environment::set_sky);
|
||||
ClassDB::bind_method(D_METHOD("set_sky_scale", "scale"), &Environment::set_sky_scale);
|
||||
ClassDB::bind_method(D_METHOD("set_bg_color", "color"), &Environment::set_bg_color);
|
||||
ClassDB::bind_method(D_METHOD("set_bg_energy", "energy"), &Environment::set_bg_energy);
|
||||
|
|
@ -829,7 +829,7 @@ void Environment::_bind_methods() {
|
|||
ClassDB::bind_method(D_METHOD("set_ambient_light_sky_contribution", "energy"), &Environment::set_ambient_light_sky_contribution);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("get_background"), &Environment::get_background);
|
||||
ClassDB::bind_method(D_METHOD("get_sky:CubeMap"), &Environment::get_sky);
|
||||
ClassDB::bind_method(D_METHOD("get_sky"), &Environment::get_sky);
|
||||
ClassDB::bind_method(D_METHOD("get_sky_scale"), &Environment::get_sky_scale);
|
||||
ClassDB::bind_method(D_METHOD("get_bg_color"), &Environment::get_bg_color);
|
||||
ClassDB::bind_method(D_METHOD("get_bg_energy"), &Environment::get_bg_energy);
|
||||
|
|
@ -1104,8 +1104,8 @@ void Environment::_bind_methods() {
|
|||
ClassDB::bind_method(D_METHOD("set_adjustment_saturation", "saturation"), &Environment::set_adjustment_saturation);
|
||||
ClassDB::bind_method(D_METHOD("get_adjustment_saturation"), &Environment::get_adjustment_saturation);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("set_adjustment_color_correction", "color_correction:Texture"), &Environment::set_adjustment_color_correction);
|
||||
ClassDB::bind_method(D_METHOD("get_adjustment_color_correction:Texture"), &Environment::get_adjustment_color_correction);
|
||||
ClassDB::bind_method(D_METHOD("set_adjustment_color_correction", "color_correction"), &Environment::set_adjustment_color_correction);
|
||||
ClassDB::bind_method(D_METHOD("get_adjustment_color_correction"), &Environment::get_adjustment_color_correction);
|
||||
|
||||
ADD_GROUP("Adjustments", "adjustment_");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "adjustment_enabled"), "set_adjustment_enable", "is_adjustment_enabled");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue