Move skin registration process into deferred on ready

This commit is contained in:
Silc Lizard (Tokage) Renew 2024-09-26 22:22:19 +09:00
parent e2dd56bea7
commit 2eb069f40b

View File

@ -332,8 +332,8 @@ void MeshInstance3D::create_multiple_convex_collisions(const Ref<MeshConvexDecom
void MeshInstance3D::_notification(int p_what) {
switch (p_what) {
case NOTIFICATION_ENTER_TREE: {
_resolve_skeleton_path();
case NOTIFICATION_READY: {
callable_mp(this, &MeshInstance3D::_resolve_skeleton_path).call_deferred();
} break;
case NOTIFICATION_TRANSLATION_CHANGED: {
if (mesh.is_valid()) {