We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bd3eb67 + f68252f commit 4102fffCopy full SHA for 4102fff
scene/3d/skeleton_3d.cpp
@@ -289,12 +289,14 @@ void Skeleton3D::_notification(int p_what) {
289
switch (p_what) {
290
case NOTIFICATION_ENTER_TREE: {
291
_process_changed();
292
- _make_dirty();
293
- _make_modifiers_dirty();
294
- force_update_all_dirty_bones();
295
#if !defined(DISABLE_DEPRECATED) && !defined(PHYSICS_3D_DISABLED)
296
setup_simulator();
297
#endif // _DISABLE_DEPRECATED && PHYSICS_3D_DISABLED
+ } break;
+ case NOTIFICATION_POST_ENTER_TREE: {
+ _make_dirty();
298
+ _make_modifiers_dirty();
299
+ force_update_all_dirty_bones();
300
update_flags |= UPDATE_FLAG_POSE;
301
_notification(NOTIFICATION_UPDATE_SKELETON);
302
} break;
0 commit comments