summary refs log tree commit diff stats
path: root/res/scripts/common.lua
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2021-02-15 12:05:18 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2021-02-15 12:05:18 -0500
commitd1235174157bd498d0c148325d7c8066e3ab6ac7 (patch)
tree1f086f5c07ebbf7721d0eb14bed6c86714164dbd /res/scripts/common.lua
parentce0628c5ad96e094db12a67d4e98b445fa873ad3 (diff)
downloadtanetane-d1235174157bd498d0c148325d7c8066e3ab6ac7.tar.gz
tanetane-d1235174157bd498d0c148325d7c8066e3ab6ac7.tar.bz2
tanetane-d1235174157bd498d0c148325d7c8066e3ab6ac7.zip
Added camera shake to lightning event
Diffstat (limited to 'res/scripts/common.lua')
-rw-r--r--res/scripts/common.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/res/scripts/common.lua b/res/scripts/common.lua index 2197417..422d157 100644 --- a/res/scripts/common.lua +++ b/res/scripts/common.lua
@@ -131,6 +131,14 @@ function WaitForMapFade()
131 end 131 end
132end 132end
133 133
134function ShakeCamera(period)
135 effect():shakeCamera(period)
136end
137
138function StopShakingCamera()
139 effect():stopShakingCamera()
140end
141
134function SetPartyDirection(spriteId, direction) 142function SetPartyDirection(spriteId, direction)
135 animation():setSpriteDirection(spriteId, direction) 143 animation():setSpriteDirection(spriteId, direction)
136 144