diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-13 04:07:16 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-13 04:07:16 +0200 |
commit | 291e9ffce1151be503f1c4550e6f4ff3230960b9 (patch) | |
tree | a1ffbd1375fe93990c2fc016b9e8da8fe9b7c4e4 /config/animations | |
parent | f15ace4d5b9f62b6288a2b6750bc48159ebebe00 (diff) | |
download | roflnauts-291e9ffce1151be503f1c4550e6f4ff3230960b9.zip roflnauts-291e9ffce1151be503f1c4550e6f4ff3230960b9.tar.gz roflnauts-291e9ffce1151be503f1c4550e6f4ff3230960b9.tar.bz2 |
CloudGenerator's atlas and quads are loaded from map config
Diffstat (limited to 'config/animations')
-rw-r--r-- | config/animations/default-clouds.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config/animations/default-clouds.lua b/config/animations/default-clouds.lua new file mode 100644 index 0000000..bbf8a28 --- /dev/null +++ b/config/animations/default-clouds.lua @@ -0,0 +1,18 @@ +return +{ + default = { + [1] = love.graphics.newQuad( 1, 1, 158,47, 478,49), + frames = 1, + repeated = true + }, + default2 = { + [1] = love.graphics.newQuad(160, 1, 158,47, 478,49), + frames = 1, + repeated = true + }, + default3 = { + [1] = love.graphics.newQuad(319, 1, 158,47, 478,49), + frames = 1, + repeated = true + } +} |