Skip to content

Commit

Permalink
Made selection screen cleaner + new eaglcrest lamps and bushes!!
Browse files Browse the repository at this point in the history
  • Loading branch information
PandaLegend committed Jan 13, 2024
1 parent b2b053e commit 5f336ab
Show file tree
Hide file tree
Showing 20 changed files with 182 additions and 217 deletions.
Binary file added assets/objects/camellia.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/objects/eaglecrestLampDay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/objects/eaglecrestLampNight.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/objects/tent1light.png
Binary file not shown.
Binary file modified assets/objects/tent2light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/tilemap/eaglecrest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
378 changes: 170 additions & 208 deletions gamedata/areadata.js

Large diffs are not rendered by default.

Binary file modified selection/assets/bulletinBackground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/buttonBackground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/customisationButtons/clothing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/customisationButtons/clothingSelected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/customisationButtons/hair.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/customisationButtons/hairSelected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/customisationButtons/hat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/customisationButtons/hatSelected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/customisationButtons/skinTone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/customisationButtons/skinToneSelected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/customisationWardrobe.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified selection/assets/selectionBackground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 12 additions & 9 deletions selection/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ body{
margin-left: 500px;
margin-right: 350px;

border-left: 5px solid var(--border);
border-right: 5px solid var(--border);
border-left: 5px solid #715d44;
border-right: 5px solid #5d4b35;
}

#logo {
Expand Down Expand Up @@ -222,8 +222,8 @@ top: 20px;
height: 168px; /* background img height */
background-image: url("./assets/playerBackground.png");

border-top: 5px solid var(--border);
border-bottom: 5px solid var(--border);
border-top: 5px solid #715d44;
border-bottom: 5px solid #715d44;

margin-top: 10px;
margin-bottom: 13px;
Expand Down Expand Up @@ -283,6 +283,7 @@ top: 20px;
#customisationWrapper {
height: 400px; /* background img height */
background-image: url("./assets/customisationWardrobe.png");
border-right: 5px solid #5B462F;
}

.customisationSelect {
Expand Down Expand Up @@ -317,32 +318,34 @@ top: 20px;
}

.customisationButton {
width: 87px;
width: 81px;
height: 98px;
display: inline-block;
}

#skinToneView {
background-image: url("assets/customisationButtons/skinTone.png");
}
#skinToneView.selected, #skinToneView:hover {
#skinToneView.selected{
background-image: url("assets/customisationButtons/skinToneSelected.png");
}
#clothingView {
background-image: url("assets/customisationButtons/clothing.png");
}
#clothingView.selected, #clothingView:hover {
#clothingView.selected{
background-image: url("assets/customisationButtons/clothingSelected.png");
}
#hairView {
background-image: url("assets/customisationButtons/hair.png");
}
#hairView.selected, #hairView:hover {
#hairView.selected{
background-image: url("assets/customisationButtons/hairSelected.png");
}
#hatView {
background-image: url("assets/customisationButtons/hat.png");
border-right: 5px solid #5B462F;
}
#hatView.selected, #hatView:hover {
#hatView.selected{
background-image: url("assets/customisationButtons/hatSelected.png");
border-right: 5px solid #5B462F;
}

0 comments on commit 5f336ab

Please sign in to comment.