Search Unity

Question Change the whole game color theme.

Discussion in 'Editor & General Support' started by maiza989, Jul 16, 2022.

  1. maiza989

    maiza989

    Joined:
    Jun 11, 2022
    Posts:
    2
    Hello, I have a dumb question that I could not figure out. I want to have a button that when a user clicks it changes the whole game color theme. So think like Pokemon first gen, each game is a different color. I want to give the feature to my game where when the user plays they can choose the color game of the game from the start. Is that possible if so how? Thanks!
     
  2. msfredb7

    msfredb7

    Joined:
    Nov 1, 2012
    Posts:
    168
    You'd have to make a custom script that you can attach onto your images / sprites / mesh renderers. That script would check which color the game is supposed to be themed on, and apply it on the visuals.

    If you want to animate the color of the visuals with an animation clip, then that's gonna be more complex because the anim clip cannot know which color is the game themed on. You'd have to create more custom logic.