Can't chose colors

Matti91Matti91 Member, PRO Posts: 14
edited February 2016 in Working with GS (PC)

Hello everyone,

When I try to chose a color for my actor, the options I have are very limited.

bildr.no/view/eU9kMm95 (don't mind the text, it's in Danish)

As you can see in the picture I cant press the button and go chose the specific color I want. I can only chose the standard ones. What is the reason for this?

Comments

  • KevinCrossKevinCross London, UKMember Posts: 1,894
    edited February 2016

    I can't help with getting the full palette to show in GameSalad for you but if you want to use more colors and can access the full palette in another program like an art program then find the color you want in that program, make a note of the RGB numbers and divide each number by 255 for GameSalad i.e. RGB(123, 28, 220) would convert to:

    self.Color.Red = 0.482352941
    self.Color.Green = 0.10980392156
    self.Color.Blue = 0.86274509803

    So that's 123/255 for red, 28/255 for green and 220/255 for blue.

    That's a bit of a faff if you need to do this for lots of different colors but it might help until you find the fix in GameSalad.

    You could of course just let GameSalad do the calculation for you by writing it like this:

    self.Color.Red = 123/255
    self.Color.Green = 28/255
    self.Color.Blue = 220/255

Sign In or Register to comment.