Fix transform notification not getting sent out for RigidBody2D
This commit is contained in:
parent
59457685c1
commit
9fb0b52608
|
@ -891,15 +891,13 @@ void CanvasItem::_notify_transform(CanvasItem *p_node) {
|
|||
* notification anyway).
|
||||
*/
|
||||
|
||||
if (/*p_node->xform_change.in_list() &&*/ p_node->_is_global_invalid()) {
|
||||
if (p_node->block_transform_notify || p_node->_is_global_invalid()) {
|
||||
return; //nothing to do
|
||||
}
|
||||
|
||||
p_node->_set_global_invalid(true);
|
||||
|
||||
if (p_node->notify_transform && !p_node->xform_change.in_list()) {
|
||||
if (!p_node->block_transform_notify) {
|
||||
if (p_node->is_inside_tree()) {
|
||||
if (p_node->notify_transform && !p_node->xform_change.in_list() && p_node->is_inside_tree()) {
|
||||
if (is_accessible_from_caller_thread()) {
|
||||
get_tree()->xform_change_list.add(&p_node->xform_change);
|
||||
} else {
|
||||
|
@ -907,8 +905,6 @@ void CanvasItem::_notify_transform(CanvasItem *p_node) {
|
|||
MessageQueue::get_singleton()->push_callable(callable_mp(p_node, &CanvasItem::_notify_transform_deferred));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (CanvasItem *ci : p_node->children_items) {
|
||||
if (ci->top_level) {
|
||||
|
|
Loading…
Reference in New Issue