diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-28 15:59:21 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-28 16:01:26 +0200 |
commit | 82f2674e8d9a8ee96ca52672bb9da5e28b45a3eb (patch) | |
tree | 08dbff11d51da8a38e010602cf2c235f69edd8cd /scene/SCsub | |
parent | c3bb4edb79db9377b803e88d6385e6842ba0871f (diff) |
Move Penner easing equations to thirdparty/misc
It was Godot-ified and integrated into Tween originally (#628)
without mention that it was thirdparty code, but it's actually
derived from https://github.com/jesusgollonet/ofpennereasing.
It's also very bad quality code and should be replaced by a better,
properly-maintained library of easing equations.
Diffstat (limited to 'scene/SCsub')
-rw-r--r-- | scene/SCsub | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/SCsub b/scene/SCsub index b1892acabc..d8839ce3a8 100644 --- a/scene/SCsub +++ b/scene/SCsub @@ -7,6 +7,8 @@ env.scene_sources = [] # Thirdparty code thirdparty_dir = "#thirdparty/misc/" thirdparty_sources = [ + # C++ sources + "easing_equations.cpp", # C sources "mikktspace.c", ] |