Clean up git merge on Game.cpp added assets
This commit is contained in:
parent
ff1863182e
commit
6bdaefdeb9
@ -20,11 +20,14 @@
|
|||||||
"scaleInEditor": 4
|
"scaleInEditor": 4
|
||||||
},
|
},
|
||||||
"kaiju-city-map.json": {
|
"kaiju-city-map.json": {
|
||||||
"scale": 3,
|
"expandedObjectLayers": [
|
||||||
"selectedLayer": 1,
|
3
|
||||||
|
],
|
||||||
|
"scale": 4,
|
||||||
|
"selectedLayer": -1,
|
||||||
"viewCenter": {
|
"viewCenter": {
|
||||||
"x": 86.16666666666666,
|
"x": 132.75,
|
||||||
"y": 10.666666666666671
|
"y": 137.875
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"kaiju-city-map.json#kaiju-city": {
|
"kaiju-city-map.json#kaiju-city": {
|
||||||
@ -34,10 +37,13 @@
|
|||||||
"scale": 1.4114285714285715,
|
"scale": 1.4114285714285715,
|
||||||
"selectedLayer": 0,
|
"selectedLayer": 0,
|
||||||
"viewCenter": {
|
"viewCenter": {
|
||||||
"x": 232.38866396761134,
|
"x": 232.3886639676113,
|
||||||
"y": 218.21862348178138
|
"y": 218.57287449392717
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"kaiju-city-map.tmj#kaiju-city": {
|
||||||
|
"scaleInDock": 1
|
||||||
|
},
|
||||||
"kaiju-city-map.tmx": {
|
"kaiju-city-map.tmx": {
|
||||||
"scale": 1.4114285714285715,
|
"scale": 1.4114285714285715,
|
||||||
"selectedLayer": 0,
|
"selectedLayer": 0,
|
||||||
@ -83,14 +89,14 @@
|
|||||||
],
|
],
|
||||||
"project": "kaiju-city-map.tiled-project",
|
"project": "kaiju-city-map.tiled-project",
|
||||||
"recentFiles": [
|
"recentFiles": [
|
||||||
|
"kaiju-city-map.json",
|
||||||
|
"kaiju-city-map.tmj",
|
||||||
|
"kaiju-city.tsj",
|
||||||
"testmap.json",
|
"testmap.json",
|
||||||
"kaiju-tokyo.tsj",
|
"kaiju-tokyo.tsj",
|
||||||
"kaiju-city-map.json",
|
|
||||||
"kaiju-city.tsx",
|
"kaiju-city.tsx",
|
||||||
"br-tiles.tsj",
|
"br-tiles.tsj",
|
||||||
"kaiju-city-map.tmx",
|
"kaiju-city-map.tmx"
|
||||||
"kaiju-city-map.tmj",
|
|
||||||
"kaiju-city.tsj"
|
|
||||||
],
|
],
|
||||||
"tileset.lastUsedFilter": "JSON tileset files (*.tsj *.json)",
|
"tileset.lastUsedFilter": "JSON tileset files (*.tsj *.json)",
|
||||||
"tileset.lastUsedFormat": "json",
|
"tileset.lastUsedFormat": "json",
|
||||||
|
BIN
assets/maps/kaiju-city-tileset.aseprite
Normal file
BIN
assets/maps/kaiju-city-tileset.aseprite
Normal file
Binary file not shown.
BIN
assets/textures/ui/TitleScreen.aseprite
Normal file
BIN
assets/textures/ui/TitleScreen.aseprite
Normal file
Binary file not shown.
BIN
assets/textures/ui/titlescreen.png
Normal file
BIN
assets/textures/ui/titlescreen.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 988 B |
BIN
assets/textures/ui/titlescreenbig.png
Normal file
BIN
assets/textures/ui/titlescreenbig.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
7
src/config/intro.json
Normal file
7
src/config/intro.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"intro": {
|
||||||
|
"1": "IN THE YEAR\n23YY ...\nHUMAN\nPARANOIA\nRUNS WILD\nCONSUMED\nBY FEAR\nAND GREED",
|
||||||
|
"2": "THEY DESTROY\nEACH OTHER\nAND EARTH\nWHO CAN\nSAVE THEM?\n",
|
||||||
|
"3": "SURELY NOT\nANOTHER\nHUMAN?!?\nPERHAPS\nONLY A\nGREATER\nMONSTER..."
|
||||||
|
}
|
||||||
|
}
|
@ -145,7 +145,6 @@ void Game::init(const char *title, int width, int height, bool fullscreen, int g
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::string kaijuTex = Game::projPath + "assets/textures/actors/kaijuturtle.png";
|
std::string kaijuTex = Game::projPath + "assets/textures/actors/kaijuturtle.png";
|
||||||
<<<<<<< HEAD
|
|
||||||
std::string fontTex = Game::projPath + "assets/textures/ui/ui-font-lorez5.png";
|
std::string fontTex = Game::projPath + "assets/textures/ui/ui-font-lorez5.png";
|
||||||
std::string textBoxTex = Game::projPath + "assets/textures/ui/ui-element-bubble.png";
|
std::string textBoxTex = Game::projPath + "assets/textures/ui/ui-element-bubble.png";
|
||||||
std::string musicFile = Game::projPath + "assets/audio/music/sillypuppy.ogg";
|
std::string musicFile = Game::projPath + "assets/audio/music/sillypuppy.ogg";
|
||||||
@ -154,13 +153,6 @@ void Game::init(const char *title, int width, int height, bool fullscreen, int g
|
|||||||
assets->AddTexture("player", kaijuTex.c_str());
|
assets->AddTexture("player", kaijuTex.c_str());
|
||||||
assets->AddTexture("font", fontTex.c_str());
|
assets->AddTexture("font", fontTex.c_str());
|
||||||
assets->AddTexture("textBox", textBoxTex.c_str());
|
assets->AddTexture("textBox", textBoxTex.c_str());
|
||||||
=======
|
|
||||||
|
|
||||||
assets->AddTexture("player", kaijuTex.c_str());
|
|
||||||
assets->AddTexture("font", "assets/textures/ui/ui-font-lorez5.png");
|
|
||||||
assets->AddTexture("textBox", "assets/textures/ui/ui-element-bubble.png");
|
|
||||||
assets->AddTexture("collider","assets/textures/ColTex.png");
|
|
||||||
>>>>>>> f449eda43f6cbd3f90508029e94741f4c2de1f9b
|
|
||||||
|
|
||||||
assets->AddMusicTrack("simonZ",musicFile.c_str());
|
assets->AddMusicTrack("simonZ",musicFile.c_str());
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user