summary refs log tree commit diff stats
path: root/src/script_system.cpp
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2021-02-26 19:08:49 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2021-02-26 19:08:49 -0500
commitc304defdd7b0c5a8bea83f2540c009ededd450cb (patch)
treef959d12fe879c7d1d20eeb8689ee62a0aa073990 /src/script_system.cpp
parentc1fc60c5a2a4b96b830afc29942648714944b9d7 (diff)
downloadtanetane-c304defdd7b0c5a8bea83f2540c009ededd450cb.tar.gz
tanetane-c304defdd7b0c5a8bea83f2540c009ededd450cb.tar.bz2
tanetane-c304defdd7b0c5a8bea83f2540c009ededd450cb.zip
Added animation slowdown effect (for Lucas underwater)
Diffstat (limited to 'src/script_system.cpp')
-rw-r--r--src/script_system.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script_system.cpp b/src/script_system.cpp index e218969..18a4e39 100644 --- a/src/script_system.cpp +++ b/src/script_system.cpp
@@ -41,7 +41,8 @@ ScriptSystem::ScriptSystem(Game& game) : game_(game) {
41 "paused", &Sprite::paused, 41 "paused", &Sprite::paused,
42 "clipping", &Sprite::clipping, 42 "clipping", &Sprite::clipping,
43 "cantCrouch", &Sprite::cantCrouch, 43 "cantCrouch", &Sprite::cantCrouch,
44 "bobsWhenNormal", &Sprite::bobsWhenNormal); 44 "bobsWhenNormal", &Sprite::bobsWhenNormal,
45 "animSlowdown", &Sprite::animSlowdown);
45 46
46 engine_.new_usertype<MessageSystem>( 47 engine_.new_usertype<MessageSystem>(
47 "message", 48 "message",