diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-12-05 02:03:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-05 02:03:37 +0100 |
commit | ad60ab9e3f543e745c6103931074e531bb7322c7 (patch) | |
tree | 415d6828b91a8d6dc76bf4f72825a4234a18528d /scene | |
parent | bc2e1eedc5e071945a1103df711ae2f285b967a0 (diff) | |
parent | 3f7ae10843ec8119bf1412dc8c0b6501fd651ebe (diff) |
Merge pull request #24169 from mrcdk/fix_canvasitem_draw_multimesh
Fixed CanvasItem.draw_multimesh() binding
Diffstat (limited to 'scene')
-rw-r--r-- | scene/2d/canvas_item.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/canvas_item.cpp b/scene/2d/canvas_item.cpp index 0ea2e85dfa..d847fa2471 100644 --- a/scene/2d/canvas_item.cpp +++ b/scene/2d/canvas_item.cpp @@ -1160,7 +1160,7 @@ void CanvasItem::_bind_methods() { ClassDB::bind_method(D_METHOD("draw_string", "font", "position", "text", "modulate", "clip_w"), &CanvasItem::draw_string, DEFVAL(Color(1, 1, 1)), DEFVAL(-1)); ClassDB::bind_method(D_METHOD("draw_char", "font", "position", "char", "next", "modulate"), &CanvasItem::draw_char, DEFVAL(Color(1, 1, 1))); ClassDB::bind_method(D_METHOD("draw_mesh", "mesh", "texture", "normal_map"), &CanvasItem::draw_mesh, DEFVAL(Ref<Texture>())); - ClassDB::bind_method(D_METHOD("draw_multimesh", "mesh", "texture", "normal_map"), &CanvasItem::draw_mesh, DEFVAL(Ref<Texture>())); + ClassDB::bind_method(D_METHOD("draw_multimesh", "multimesh", "texture", "normal_map"), &CanvasItem::draw_multimesh, DEFVAL(Ref<Texture>())); ClassDB::bind_method(D_METHOD("draw_set_transform", "position", "rotation", "scale"), &CanvasItem::draw_set_transform); ClassDB::bind_method(D_METHOD("draw_set_transform_matrix", "xform"), &CanvasItem::draw_set_transform_matrix); |