diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-02-26 19:08:49 -0500 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2021-02-26 19:08:49 -0500 |
| commit | c304defdd7b0c5a8bea83f2540c009ededd450cb (patch) | |
| tree | f959d12fe879c7d1d20eeb8689ee62a0aa073990 /src/script_system.cpp | |
| parent | c1fc60c5a2a4b96b830afc29942648714944b9d7 (diff) | |
| download | tanetane-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.cpp | 3 |
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", |
