Skip to content

Commit

Permalink
feat(character): replace model viewer background
Browse files Browse the repository at this point in the history
  • Loading branch information
r-o-b-o-t-o committed Mar 17, 2022
1 parent 4d0fced commit 7315de7
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build/
# Downloaded data files
data/*
!data/*.csv
!data/background.png
!data/*.png

# Configuration
config.json
Expand Down
File renamed without changes
Binary file added data/modelviewer-background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/armory/Armory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export class Armory {
app.use("/data/meta", express.static(`data/meta`));
app.use("/data/bone", express.static(`data/bone`));
app.use("/data/textures", express.static(`data/textures`));
app.use("/data/background.png", express.static(`data/background.png`));
app.use("/data/background.png", express.static(`data/modelviewer-background.png`));

const indexController = new IndexController(this);
app.get("/", this.wrapRoute(indexController.index.bind(indexController)));
Expand Down

0 comments on commit 7315de7

Please sign in to comment.