feat: modules moved and engine moved to submodule

This commit is contained in:
Jan van der Weide 2025-04-12 18:40:44 +02:00
parent dfb5e645cd
commit c33d2130cc
5136 changed files with 225275 additions and 64485 deletions

View file

@ -366,7 +366,7 @@ void SkeletonIK3D::_bind_methods() {
#endif
}
void SkeletonIK3D::_process_modification() {
void SkeletonIK3D::_process_modification(double p_delta) {
if (!internal_active) {
return;
}
@ -485,7 +485,7 @@ bool SkeletonIK3D::is_running() {
void SkeletonIK3D::start(bool p_one_time) {
if (p_one_time) {
internal_active = true;
SkeletonModifier3D::process_modification();
SkeletonModifier3D::process_modification(0);
internal_active = false;
} else {
internal_active = true;