I began streaming about two months ago due to a fascination with the culture. As a designer and gamer, I was enticed by the idea of critically thinking about design for the sole purpose of streaming video games :D.
This is just the beginning of my foray into overlays. Still, I thought it may be helpful for others to explain my thought process behind creating one. I firmly believe that overlays (and most design) require an iterative approach, so don’t be surprised when my overlay changes yet again just days after posting this ;).
I first began with “research”, aka prowling the channels of popular Twitch streamers to see what types of information and language they used in their overlays. Some of the most common categories included:
After compiling a mental bucket list of these categories, I evaluated which my personal needs required. As a new streamer, I didn’t need anything related to donations (or so I thought). I am also not partnered with Twitch, so sub goals were out of the picture. This left me with:
The next stop was my sketchbook for wireframing. Despite what few categories I needed initially, I wanted to create a flexible overlay that could be built upon without necessitating a complete facelift. I determined that compartmentalizing these tidbits of information into modules would allow for the most fluidity (my extreme bias towards grids aside).
Once I stopped unnecessarily obsessing, I decided to move forward with a three column approach. It wasn’t perfect (yay minimum viable product), but I wanted to begin using it as soon as I could to begin receiving feedback from viewers (aka people watching me play video games). As my friends know, I don’t wear colors so my first overlay predictably followed the same trend (except in this pic, it’s old okay).
I only used this overlay maybe twice during evening hours before receiving amusing, critical feedback:
“Omg, this is burning my eyes out! I’m trying to watch this in a dark room, ahhh!”
Ha. I would have never thought of that. Noted, go darker.
Not to mention, the decision to cut colors also meant I had willingly eliminated a great visual tool for creating hierarchy and contrast. Regardless of what my fashion sense dictated, I wasn’t very happy about that. Back to the drawing board I went.
I know, you’re cringing. Don’t worry, so am I. I quickly pumped this out to see if it would help reinforce my “branding” since I use these colors on my site. The feedback, of course, was that these colors were blinding. I concur, I totally did not do this color palette justice with my rushed execution.
The next attempt focused on using color as subtle highlights. The obvious choice was pink, duh (those who know me in real life would never guess that pink is my favorite color).
Using a pop of color was a great way to add contrast to my flat-design overlay without crossing over into the world of drop-shadows and gradients. Given the skeuomorphic approach video games take, I really wanted to establish an immediate visual difference between the game content and my content.
This overlay was probably the one I stuck with for the longest before realizing that making even a tiny change required editing the image in Photoshop and reuploading a new image entirely. If I didn’t feel like listening to music, there was no easy way of removing that module. The only option would be to leave that spot blank despite the music icon’s presence, which screams “you failed as a designer” to me.
My viewers also then began requesting a donation button, which would further require several more pieces of content on my overlay. It was clear that I needed even moar flexibility.
It dawned on me one day that because of my gridded approach, this overlay could easily be translated to HTML/CSS! After letting the idea marinate for a bit, I snapped one evening and camped my couch until 8AM coding it (shoutouts to pita chips and popcorn).
This is what I ended up with.
The entire overlay is wrapped inside a div sized at 1920 x 1080 pixels. It features a three column layout.
The tips section, follower-goal/music/etc. section, and social media section are unordered lists. The chat box, webcam area, and game capture area are styled DIVs. The three headers up top are styled header tags.
The typeface was purchased from HypeForType and is being pulled in locally. Something worth noting is that I did have to convert it to .TTF format for OBS to pick it up for regular text sources.
The icons are all SVGs which are hosted remotely because OBS was having issues grabbing these particular files, even with relative paths. You don’t have to use SVGs, but the fact that they appeared fuzzy on my retina display drove me nuts. Yes, fully aware of how obsessive I am.
My overall goal in creating an HTML/CSS overlay was to be able to edit it easily without a dependency on images. In the section ahead, I’m going to explain the approaches I took with code. Here’s where things get nerdy so if you aren’t a web-designer, feel free to drop off. Geeks, keep on readin’.
To make things easier for myself, I used SCSS to define obvious variables, like typeface, highlight-color (the pink), and a few DIV heights. If I want to turn all the pink strokes in my layout orange, I only have to alter $highlight-color at the top of the .scss file.`{% highlight scss %}
Moving onto the info-categories like follower goal, music, tips, and others. Let’s call them medallions since they are small tokens of information. Each section is an <ul>, therefore each medallion is just a <li>. If I want to remove one, all it takes is commenting out the list item. Likewise, adding one just requires appending a list item.
For styling, display: -webkit-flex; is used to center the icons and text. I then used object-oriented CSS to make each medallion as malleable as possible. Each icon, height, and border is determined by a class. For example, if I want to create the music medallion, all I’d have to type is:
<li class="music border h1"></li>
By the way, h1 actually refers to “height-1”. Yep, bad choice of class name on my part. But hey, I made this in one night to just test it out! I’ll smooth things over as I make more modular, systematic layouts.
Likewise, if I wanted the notes section without a border, I would type:
<li class="note borderless h1">Notes</li>
I pasted a snippet of my these classes below so you get an idea of how I organized them. You’ll notice that the varying heights are defined by multiplying one constant variable. That way, all I have to do is change $block-height to alter all heights. Either that or I can tweak the multiple specific to the height I want to adjust.
Using CLR browser plugin, I pulled the overlay seamlessly into OBS. There was just one problem…
Weird, huh? The overlay clearly works, but fails to load consistently in OBS upon start. Until I double-click the source and hit “OK” (without even making any other adjustments), it does not appear 9 out of 10 times. Not a major issue, but who wants to see this lack of preparation at the start of each VOD? I surely don’t.
I’m still chiseling away at this problem with the help of some awesome developer friends. If you think you have a solution to this, I’d appreciate a hint! :)
And that’s where I currently am in this process! I have a lot more plans in the near future which include custom donation alerts, different versions of in-between game overlays, and more. Do let me know if this peek into my brain was insightful or helpful. And please keep in mind that this is not meant to be a tutorial!
That’s a wrap! Catch me on Twitter for more silliness/nerdiness/obsessiveness.