feat(datas): add Battle's Holy Summit map
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/back1.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/back2.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 185 KiB |
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
name = "Holy Summit",
|
||||
blocks = {
|
||||
{ 0, 240, 288, 48, "top1", "side1"},
|
||||
{ 0, 176, 176, 64, "top2", "noside"},
|
||||
{240, 176, 48, 64, "top3", "noside"},
|
||||
{ 0, 144, 288, 32, "top4", "side1"},
|
||||
{ 0, 48, 48, 96, "top5", "noside"},
|
||||
{144, 48, 144, 96, "top6", "noside"},
|
||||
{ 0, 0, 288, 48, "top7", "side1"},
|
||||
},
|
||||
parallax = {
|
||||
{0, -48, .5, 0, true, false, "back1"},
|
||||
{0, -12, 1, 1, true, false, "back2"},
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 545 B |
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/side1.png
Normal file
After Width: | Height: | Size: 8 KiB |
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/side2.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/top1.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/top2.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/top3.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/top4.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/top5.png
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/top6.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
sonic-radiance.love/datas/gamedata/maps/battle/hsummit/top7.png
Normal file
After Width: | Height: | Size: 27 KiB |
|
@ -33,7 +33,7 @@ function MovePlayer:new(playerNumber, cameraMode)
|
|||
MovePlayer.super.new(self)
|
||||
self.assets:batchImport("scenes.test_scene.assets")
|
||||
|
||||
World(self, "battle", "ghill")
|
||||
World(self, "battle", "hsummit")
|
||||
|
||||
self.world:setPlayerNumber(playerNumber)
|
||||
self.world.cameras:setMode(cameraMode)
|
||||
|
|