diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-07-19 10:00:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-19 10:00:20 +0200 |
commit | c5ba9d9b7c6d7d2c08d01b13af87748af4dee8a2 (patch) | |
tree | 540f8232f44a6fdc0646a6f3410fb644922d5cab /scene/resources/environment.cpp | |
parent | 1f91c2908e7c551c20dc00d88212e0aaad44f4cf (diff) | |
parent | 49c7620326a557bc809340dd1090b46120e43eac (diff) |
Merge pull request #9703 from Noshyaar/docs
Add object type hint for docs
Diffstat (limited to 'scene/resources/environment.cpp')
-rw-r--r-- | scene/resources/environment.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/resources/environment.cpp b/scene/resources/environment.cpp index 125bbd2d64..867283d3a8 100644 --- a/scene/resources/environment.cpp +++ b/scene/resources/environment.cpp @@ -1103,8 +1103,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"), &Environment::set_adjustment_color_correction); - ClassDB::bind_method(D_METHOD("get_adjustment_color_correction"), &Environment::get_adjustment_color_correction); + 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); ADD_GROUP("Adjustments", "adjustment_"); ADD_PROPERTY(PropertyInfo(Variant::BOOL, "adjustment_enabled"), "set_adjustment_enable", "is_adjustment_enabled"); |