How to clearly highlight GUI object regardless of its color

Started by
12 comments, last by Mia Blue 9 years, 6 months ago

The grayscale for disabled is great, but I would like to stick with "normal" for normal. Is there some kind of vivid manipulation?
@wodinoneeye can you link some example of result? It is quite hard to imagine how it looks like.

The most obvious solution would be some kind of light "blur behind" similar to Windows Aero title bars. Link

Advertisement

I would outline the object with another color. If you've ever seen a movie with closed captions or subtitles, you would likely find it difficult to read the words if the background color is similar to the font color. The remedy for this was to outline the text with another color (doesn't matter what). That way, the words are clearly visible regardless of the background.

In terms of selection highlights, you can do that in several ways (to draw attention to the selected button). You could do a button pressed graphic (literally, makes the button look pressed in), you could make the button slide out when the mouse is over it (for instance, 32 pixels to the right if the interface is along the left side of the screen), you could change the alpha (make it transparent, or more transparent if it's already transparent), you could make a shuriken fly into the button that's selected, etc.

Are you making an engine? A lot of people are concerned about reusing their code in several projects. I understand not wanting to reinvent the wheel, but you also don't want to be too repetitive with your design, even if you're developing a series of similar titles. Take the Naruto: Ultimate Ninja series for instance. The design is slightly different each time (I was unable to find a screenshot of the third PS2 title). These games also utilize outlines for selection, and also animation once pressed.

529520-shonen-jump-naruto-ultimate-ninja480303-shonen-jump-naruto-ultimate-ninja

Please forgive me if I misunderstood your question. I hope I could help somewhat!


You could do a button pressed graphic (literally, makes the button look pressed in

That effect sounds cool, any ideas how is it done?


You could do a button pressed graphic (literally, makes the button look pressed in

That effect sounds cool, any ideas how is it done?

Here is an easy way to make buttons::

Button_Tutorial.png

You can do this at any size you like, and also experiment with border sizes and blurring. Just choose a fill color or texture. For specialized buttons, I would recommend drawing them manually (Gimp is great, and a free alternative to Photoshop). But this can be used as a starting point if you don't currently have another method. Sorry for my late response!

This topic is closed to new replies.

Advertisement