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/3d/multimesh_instance.cpp | |
| parent | 1f91c2908e7c551c20dc00d88212e0aaad44f4cf (diff) | |
| parent | 49c7620326a557bc809340dd1090b46120e43eac (diff) | |
Merge pull request #9703 from Noshyaar/docs
Add object type hint for docs
Diffstat (limited to 'scene/3d/multimesh_instance.cpp')
| -rw-r--r-- | scene/3d/multimesh_instance.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/3d/multimesh_instance.cpp b/scene/3d/multimesh_instance.cpp index b51953f27c..b4558698cc 100644 --- a/scene/3d/multimesh_instance.cpp +++ b/scene/3d/multimesh_instance.cpp @@ -31,8 +31,8 @@ void MultiMeshInstance::_bind_methods() { - ClassDB::bind_method(D_METHOD("set_multimesh", "multimesh"), &MultiMeshInstance::set_multimesh); - ClassDB::bind_method(D_METHOD("get_multimesh"), &MultiMeshInstance::get_multimesh); + ClassDB::bind_method(D_METHOD("set_multimesh", "multimesh:MultiMesh"), &MultiMeshInstance::set_multimesh); + ClassDB::bind_method(D_METHOD("get_multimesh:MultiMesh"), &MultiMeshInstance::get_multimesh); ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "multimesh", PROPERTY_HINT_RESOURCE_TYPE, "MultiMesh"), "set_multimesh", "get_multimesh"); } |