2
0
mirror of https://github.com/godotengine/godot.git synced 2025-04-25 01:48:08 +08:00

Add saving flag hack to Skeleton and revert reset timing of animation

This commit is contained in:
Silc Lizard (Tokage) Renew 2025-01-26 00:57:37 +09:00
parent 1b7b009674
commit cb7085340e
10 changed files with 51 additions and 25 deletions

@ -1913,14 +1913,12 @@ void EditorNode::_save_scene(String p_file, int idx) {
return;
}
List<Pair<AnimationMixer *, Ref<AnimatedValuesBackup>>> anim_backups;
_reset_animation_mixers(scene, &anim_backups);
scene->propagate_notification(NOTIFICATION_EDITOR_PRE_SAVE);
editor_data.apply_changes_in_editors();
save_default_environment();
List<Pair<AnimationMixer *, Ref<AnimatedValuesBackup>>> anim_backups;
_reset_animation_mixers(scene, &anim_backups);
_save_editor_states(p_file, idx);
Ref<PackedScene> sdata;

@ -465,12 +465,6 @@ void RetargetModifier3D::_notification(int p_what) {
case NOTIFICATION_ENTER_TREE: {
_update_child_skeletons();
} break;
#ifdef TOOLS_ENABLED
case NOTIFICATION_EDITOR_PRE_SAVE: {
_reset_child_skeleton_poses();
_force_update_child_skeletons();
} break;
#endif // TOOLS_ENABLED
case NOTIFICATION_EXIT_TREE: {
_reset_child_skeletons();
} break;

@ -117,6 +117,10 @@ public:
void set_profile(Ref<SkeletonProfile> p_profile);
Ref<SkeletonProfile> get_profile() const;
#ifdef TOOLS_ENABLED
virtual bool is_processed_on_saving() const override { return true; }
#endif
RetargetModifier3D();
virtual ~RetargetModifier3D();
};

@ -327,8 +327,10 @@ void Skeleton3D::_notification(int p_what) {
} break;
#ifdef TOOLS_ENABLED
case NOTIFICATION_EDITOR_PRE_SAVE: {
force_update_all_dirty_bones();
emit_signal(SceneStringName(skeleton_updated));
saving = true;
} break;
case NOTIFICATION_EDITOR_POST_SAVE: {
saving = false;
} break;
#endif // TOOLS_ENABLED
case NOTIFICATION_UPDATE_SKELETON: {
@ -940,6 +942,13 @@ void Skeleton3D::_make_dirty() {
void Skeleton3D::_update_deferred(UpdateFlag p_update_flag) {
if (is_inside_tree()) {
#ifdef TOOLS_ENABLED
if (saving) {
update_flags |= p_update_flag;
_notification(NOTIFICATION_UPDATE_SKELETON);
return;
}
#endif //TOOLS_ENABLED
if (update_flags == UPDATE_FLAG_NONE && !updating) {
notify_deferred_thread_group(NOTIFICATION_UPDATE_SKELETON); // It must never be called more than once in a single frame.
}
@ -1165,6 +1174,11 @@ void Skeleton3D::_process_modifiers() {
if (!mod) {
continue;
}
#ifdef TOOLS_ENABLED
if (saving && !mod->is_processed_on_saving()) {
continue;
}
#endif //TOOLS_ENABLED
real_t influence = mod->get_influence();
if (influence < 1.0) {
LocalVector<Transform3D> old_poses;

@ -66,6 +66,10 @@ public:
class Skeleton3D : public Node3D {
GDCLASS(Skeleton3D, Node3D);
#ifdef TOOLS_ENABLED
bool saving = false;
#endif //TOOLS_ENABLED
#ifndef DISABLE_DEPRECATED
bool animate_physical_bones = true;
Node *simulator = nullptr;

@ -91,6 +91,10 @@ public:
static Vector3 get_vector_from_axis(Vector3::Axis p_axis);
static Vector3::Axis get_axis_from_bone_axis(BoneAxis p_axis);
#ifdef TOOLS_ENABLED
virtual bool is_processed_on_saving() const { return false; }
#endif
SkeletonModifier3D();
};

@ -180,13 +180,3 @@ Vector3 SpringBoneCollision3D::collide(const Transform3D &p_center, float p_bone
Vector3 SpringBoneCollision3D::_collide(const Transform3D &p_center, float p_bone_radius, float p_bone_length, const Vector3 &p_current) const {
return Vector3(0, 0, 0);
}
#ifdef TOOLS_ENABLED
void SpringBoneCollision3D::_notification(int p_what) {
switch (p_what) {
case NOTIFICATION_EDITOR_PRE_SAVE: {
sync_pose();
} break;
}
}
#endif // TOOLS_ENABLED

@ -47,9 +47,6 @@ protected:
void _validate_property(PropertyInfo &p_property) const;
static void _bind_methods();
#ifdef TOOLS_ENABLED
virtual void _notification(int p_what);
#endif // TOOLS_ENABLED
virtual Vector3 _collide(const Transform3D &p_center, float p_bone_radius, float p_bone_length, const Vector3 &p_current) const;

@ -397,6 +397,12 @@ void SpringBoneSimulator3D::_notification(int p_what) {
case NOTIFICATION_LOCAL_TRANSFORM_CHANGED: {
update_gizmos();
} break;
case NOTIFICATION_EDITOR_PRE_SAVE: {
saving = true;
} break;
case NOTIFICATION_EDITOR_POST_SAVE: {
saving = false;
} break;
#endif // TOOLS_ENABLED
}
}
@ -1467,6 +1473,13 @@ void SpringBoneSimulator3D::_process_modification() {
}
_find_collisions();
_process_collisions();
#ifdef TOOLS_ENABLED
if (saving) {
return; // Collision position has been reset but we don't want to process simulating on saving. Abort.
}
#endif //TOOLS_ENABLED
double delta = skeleton->get_modifier_callback_mode_process() == Skeleton3D::MODIFIER_CALLBACK_MODE_PROCESS_IDLE ? skeleton->get_process_delta_time() : skeleton->get_physics_process_delta_time();
for (int i = 0; i < settings.size(); i++) {
_init_joints(skeleton, settings[i]);

@ -36,6 +36,10 @@
class SpringBoneSimulator3D : public SkeletonModifier3D {
GDCLASS(SpringBoneSimulator3D, SkeletonModifier3D);
#ifdef TOOLS_ENABLED
bool saving = false;
#endif //TOOLS_ENABLED
bool joints_dirty = false;
LocalVector<ObjectID> collisions; // To process collisions for sync position with skeleton.
@ -274,6 +278,10 @@ public:
// To process manually.
void reset();
#ifdef TOOLS_ENABLED
virtual bool is_processed_on_saving() const override { return true; }
#endif
};
VARIANT_ENUM_CAST(SpringBoneSimulator3D::BoneDirection);