Skip to content

Instantly share code, notes, and snippets.

@melissamcewen
Last active December 1, 2023 00:12
Show Gist options
  • Save melissamcewen/048d6e114a515d60b48e70d35a1653ff to your computer and use it in GitHub Desktop.
Save melissamcewen/048d6e114a515d60b48e70d35a1653ff to your computer and use it in GitHub Desktop.
Datamining colors in Fashion Dreamer

See the colors page in the Fashion Dreamer Wiki for the results of my data mining

I used assetripper to extract the contents of a few different Unity bundles

judgment2 seems to have a bunch of info about how different colors, tones, etc. are judged lookat seems to be about how lookits are judged, and references judgment2

I believe the link here is that lookat uses IDs to reference stuff defined in judgment2

For example LookAtLBDB_Color.asset in the lookat bundle has the following

 - Id: 2
    ScsIds: 0100000002000000030000000c0000000d0000000e0000000f0000001000000011000000

I believe these are hex numbers so: ID 1: 0x00000001 (1 in decimal) ID 2: 0x00000002 (2 in decimal) ID 3: 0x00000003 (3 in decimal) ID 4: 0x0000000c (12 in decimal) ID 5: 0x0000000d (13 in decimal) ID 6: 0x0000000e (14 in decimal) ID 7: 0x0000000f (15 in decimal) ID 8: 0x00000010 (16 in decimal) ID 9: 0x00000011 (17 in decimal)

Going to SCS2DB_SCS2_Color.asset in judgment2 we have a bunch of colors and they have IDs! Out of curiosity here are the hex codes for the colors:

  • 1: FFE600
  • 2: E6FF00
  • 3: 6FFF00
  • 12: 1500FF
  • 13: 8800FF
  • 14: DD00FF
  • 15: FF00D0
  • 16: FF0080
  • 17: FF005E

Looking up those colors on a hex color database just to see what they are like visually

Now what does this mean? Let's head to the localization bundle en_us which has a label referencing LookAtLBDB_Color.asset

  - Label: LookAtLBColor_000002
    LabelId: -991135128
    Text: Neon Colors

Neon colors! That makes perfect sense. The other arrays make sense too when you look them up. Now what I don't know is how close you have to be to these various colors to get them to be recognized, but if you want to be safe, for neon colors, just use those exact colors

For online lookit requests it appears the colors are different and can be found in the creativeearth bundle in GenerateFavoriteColorDB_GenerateFavoriteColor.asset

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment