diff options
author | Ricardo Buring <ricardo.buring@gmail.com> | 2024-05-11 01:22:50 +0200 |
---|---|---|
committer | Ricardo Buring <ricardo.buring@gmail.com> | 2024-08-18 17:14:59 +0200 |
commit | 1728f80e7cd6d8ed4dd5068f7bd5da64b9c6edfa (patch) | |
tree | 1746729a8905252460f43a4392b4265b134c147e /core/error | |
parent | a7598679cff6daffbec8f16314b853d87268fff5 (diff) | |
download | redot-engine-1728f80e7cd6d8ed4dd5068f7bd5da64b9c6edfa.tar.gz |
Fixed Timestep Interpolation: MultiMesh
Adds fixed timestep interpolation to multimeshes.
Co-authored-by: lawnjelly <lawnjelly@gmail.com>
Diffstat (limited to 'core/error')
-rw-r--r-- | core/error/error_macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/error/error_macros.h b/core/error/error_macros.h index d31adb72be..19c16667d0 100644 --- a/core/error/error_macros.h +++ b/core/error/error_macros.h @@ -843,6 +843,6 @@ void _physics_interpolation_warning(const char *p_function, const char *p_file, _physics_interpolation_warning(FUNCTION_STR, __FILE__, __LINE__, m_object_id, m_string) #define PHYSICS_INTERPOLATION_WARNING(m_string) \ - _physics_interpolation_warning(FUNCTION_STR, __FILE__, __LINE__, UINT64_MAX, m_string) + _physics_interpolation_warning(FUNCTION_STR, __FILE__, __LINE__, ObjectID(UINT64_MAX), m_string) #endif // ERROR_MACROS_H |