Godot: CanvasItemEditor更新时发生错误

创建于 2017-09-21  ·  1评论  ·  资料来源: godotengine/godot

主分支。

更新时,Godot会在CanvasItemEditor上喷射错误:
2017-09-21-140659_630x260_scrot

自#11446以来可能在这里。

bug editor

最有用的评论

我猜想我们应该在第2696行_draw_locks_and_groups(editor->get_edited_scene(), transform);添加另一个NULL检查,以防止出现垃圾邮件错误。 你可以试试这个吗?

if (editor->get_edited_scene()) {
    _draw_locks_and_groups(editor->get_edited_scene(), transform);
}

>所有评论

我猜想我们应该在第2696行_draw_locks_and_groups(editor->get_edited_scene(), transform);添加另一个NULL检查,以防止出现垃圾邮件错误。 你可以试试这个吗?

if (editor->get_edited_scene()) {
    _draw_locks_and_groups(editor->get_edited_scene(), transform);
}
此页面是否有帮助?
0 / 5 - 0 等级

相关问题

kirilledelman picture kirilledelman  ·  3评论

ducdetronquito picture ducdetronquito  ·  3评论

bojidar-bg picture bojidar-bg  ·  3评论

Spooner picture Spooner  ·  3评论

gonzo191 picture gonzo191  ·  3评论