Skip to content

Commit

Permalink
Update CharCreatorSelectPage.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
lemz1 committed Nov 9, 2024
1 parent feaf8b2 commit 319c163
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions source/funkin/ui/debug/char/pages/CharCreatorSelectPage.hx
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,11 @@ class CharCreatorSelectPage extends CharCreatorDefaultPage
grpIcons = new FlxSpriteGroup();
add(grpIcons);

// only the unused slots should be selectable
// i dont know if i like using the lock sprite
// maybe there is a different placeholder we could use
// also, we should probably make the used slots
// less visible or something like that
for (i in 0...9)
{
if (availableChars.exists(i))
Expand Down

3 comments on commit 319c163

@KoloInDaCrib
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was thinking we could make a submenu w/ 9 MenuOptionBoxes in the Settings Menu above for the user to select in which slot the character should be in, and maybe we could make the other occupied slot boxes disabled (say we import the player data of pico, then we could have all slots enabled except for slot 5, which is bf slot; for custom players slots 4 and 5 would be occupied and thus disabled)

also for the placeholder idk maybe the default face icon?

lemme know if you have any other ideas

@lemz1
Copy link
Collaborator Author

@lemz1 lemz1 commented on 319c163 Nov 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sadly there isnt a pixelated icon for the default face
thats why i wasn't sure

I was thinking we could make a submenu w/ 9 MenuOptionBoxes in the Settings Menu

i'll look into getting a prototype ready

@KoloInDaCrib
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sadly there isnt a pixelated icon for the default face

we could use Mosaic Effect like from this demo, either that or we could desaturate bf's pixel icon with shaders

Please sign in to comment.