Began working on sounds
This commit is contained in:
2
Box
2
Box
Submodule Box updated: e240b7ac3f...602a83dab6
@@ -24,6 +24,7 @@ Make sure the program can see the `assets` folder (symbolic links can help), and
|
|||||||
|
|
||||||
* SDL2
|
* SDL2
|
||||||
* SDL2_image
|
* SDL2_image
|
||||||
|
* SDL2_mixer
|
||||||
* SDL2_ttf
|
* SDL2_ttf
|
||||||
* libcurses (for debugging only)
|
* libcurses (for debugging only)
|
||||||
|
|
||||||
@@ -33,11 +34,14 @@ The source code for this project, not including the contents of Box, is covered
|
|||||||
|
|
||||||
The art assets are covered by creative commons license CC BY Evan Hartshorn.
|
The art assets are covered by creative commons license CC BY Evan Hartshorn.
|
||||||
|
|
||||||
|
The audio assets are covered by the creative commons license CC BY Forcy.
|
||||||
|
|
||||||
The font assets are used with permission, links to the relevant licenses are provided below.
|
The font assets are used with permission, links to the relevant licenses are provided below.
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
* Art - Evan Hartshorn
|
* Art - Evan Hartshorn
|
||||||
|
* Music & SFX - Forcy
|
||||||
* Coding - Kayne Ruse
|
* Coding - Kayne Ruse
|
||||||
* Font - Ancient God (Koczman B<>lint) - https://www.dafont.com/ancient-god.font
|
* Font - Ancient God (Koczman B<>lint) - https://www.dafont.com/ancient-god.font
|
||||||
* Font - AlphaBeta (Brian Kent) - https://www.fontpalace.com/font-download/alpha-beta/
|
* Font - AlphaBeta (Brian Kent) - https://www.fontpalace.com/font-download/alpha-beta/
|
||||||
|
|||||||
BIN
assets/audio/music/Music_Skylands_placeholder.ogg
Normal file
BIN
assets/audio/music/Music_Skylands_placeholder.ogg
Normal file
Binary file not shown.
@@ -13,6 +13,9 @@ int main(int argc, char* argv[]) {
|
|||||||
// Toy_setDrivePath("airport", "assets/airport-demo"); //DEBUG
|
// Toy_setDrivePath("airport", "assets/airport-demo"); //DEBUG
|
||||||
Toy_setDrivePath("scripts", "assets/scripts");
|
Toy_setDrivePath("scripts", "assets/scripts");
|
||||||
Toy_setDrivePath("sprites", "assets/sprites");
|
Toy_setDrivePath("sprites", "assets/sprites");
|
||||||
|
Toy_setDrivePath("audio", "assets/audio");
|
||||||
|
Toy_setDrivePath("music", "assets/audio/music");
|
||||||
|
Toy_setDrivePath("sounds", "assets/audio/sounds");
|
||||||
Toy_setDrivePath("fonts", "assets/fonts");
|
Toy_setDrivePath("fonts", "assets/fonts");
|
||||||
|
|
||||||
Box_initEngine("scripts:/init.toy");
|
Box_initEngine("scripts:/init.toy");
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ CC=gcc
|
|||||||
|
|
||||||
IDIR+=. ../Box/Toy/source ../Box/source
|
IDIR+=. ../Box/Toy/source ../Box/source
|
||||||
CFLAGS+=$(addprefix -I,$(IDIR)) -g -Wall -W -Wno-unused-parameter -Wno-unused-function -Wno-unused-variable
|
CFLAGS+=$(addprefix -I,$(IDIR)) -g -Wall -W -Wno-unused-parameter -Wno-unused-function -Wno-unused-variable
|
||||||
LIBS+=-lSDL2 -ltoy -lbox -lSDL2_image -lSDL2_ttf -lSDL2main -lSDL2
|
LIBS+=-ltoy -lbox -lSDL2_image -lSDL2_mixer -lSDL2_ttf -lSDL2main -lSDL2
|
||||||
|
|
||||||
ODIR = obj
|
ODIR = obj
|
||||||
SRC = $(wildcard *.c)
|
SRC = $(wildcard *.c)
|
||||||
|
|||||||
Reference in New Issue
Block a user