Welcome to Game Development Conferences Redux, a place where it is attempted to condense the contents of hour-long game development videos, in compact, written format for those with less time.

For this issue we are covering the contents of the Juice It Or Lose It. Where in a nutshell, we will be talking about the many super easy ways in which one can enhance a game experience, making it "feel" more fun.


However if after reading a little about the talk, you are still interested, you might just want to straight up watch it. (That, or if you have the suspicion I might've missed important parts of the talk.)

So, here you go just in case:


Sooo, what is "Juice"?

As the heart of the talk, we will be talking about the concept of "juicing". By that we mean a little animation, noise, visual feedback, or any other type of reaction that amplifies an action, specific input or sequence of events.

It might be easier if you see No Juice vs. Juice in action:

Yea, just a little over the top, but you get the idea. Juicing refers to this contrast between bland and fun (or at least, interesting).

Even if you don't actually physically experience it, things like camera shake can add a lot of impact and make you somehow feel part of the action.

It is all about showing a maximum output for each minimal input.


Okay, Here Is The Meat Of The Talk

Just so you know, the talk itself focuses on the example blockout clone you just saw. While doing emphasis over the little things that added juice to the bland, base game.

So, if anything, you might say what the two folks talked about, was but an example list of things one can improve their games at:

Movement And Impact

A little wobble, some shaking, almost any minimal movement as a reaction to something else, adds a lot more than you imagine.

To the right you see a combination of all the following:

  • The paddle, stretches and squashes depending on how fasy you move the mouse.
  • The ball is resized and made a little bigger, every time it hits ANYTHING.
  • After hitting something, the ball, rotates to denote the new directory it will be taking.
  • After hitting something, the ball wobbles for a bit.
  • After hitting something, the ball becomes white.
  • The ball stretches based on its current velocity.
  • When a block is destroyed it falls off.
  • While being destroyed, a block becomes smaller.
  • While being destroyed and becoming smaller, it should spin.
  • And finally, to avoid blending with the rest, the destroyed block should become darker.
  • All of the blocks move a little whenever the ball hits anything.
  • The walls bounce as gum whenever the ball hits them.

Particle Effects

One of the easiest ways to amplify something without actually moving it, is via a particle that denotes something about it. (Direction, impact, movement, etc.)

On the left, you can see all of the following working together:

  • Little smoke puffs whenever the ball hits something.
  • Following the above example, anytime it hits anything, it is complemented with unique particles as well.
  • There is now a trail that follows the old trajectory of a ball.
  • Every block you break, gets broken into darker sub-blocks as particles that fall off the screen.

Sound

This is a MUST when it comes to areas that many games should focus effort when polishing.

Sound effects alone can sell the idea of physicality of almost anything, so you shouldn't let them slide.

(Also, given how it is impossible to add sound to a GIF, it is a good chance to share with you the link where you can actually play this little breakout clone.)

Just notice how:

  • Whenever the ball hits a wall, it makes a sound.
  • Whenever the ball hits a block, it makes a DIFFERENT sound.
  • When blocks are hit in succession, the pitch changes, making them sound "harmonized".
  • If the ball hits a paddle, it makes yet another sound effect.
  • And of course, the game also has BGM.

And As The Final Cherry...

Just remember that you can juice ANY area or moment of your game. An intro for example:

Screen shake with Perlin noise, transitions, alpha cuts, there are many ways that weren't spoken of during the talk really, but that is the point.

You need to find what best suits your own game and use it.


Esentially, this little talk gives an important message I think everyone should take home: "You can polish EVERYTHING to an Nth deegree, you just need to look."

But also keep in mind something equally important: Don't start polishing until it is final.

The folkds that gave the talk had a finished breakout clone by the time they started adding all the juice. They didn't add it while developing, wait until it is the right moment.

Regardless, hope you enjoyed the little breakdown of the talk (and/or the talk itself if you decided to watch it).

And Like Always...

Thank you very much for reading my blog :3

Prepare Your Content, And Let It Auto Post Itself

Think about it for a second.

When do you post in social media? Is it when you notice you get more attraction? Or instead, it depends on at what time you are awake? The thing is, normally that "peak" moment for you might always come at the same hour, or even at a time while you are sleeping, but you would need to post at different times to know.

Actually, let's put it this way. You already know when you SHOULD be posting (let's say 4 a.m.), but you know you CAN'T post at that time for any reason (call it sleeping hours, work, school, etc.).

What CAN you do then? Well, luckily for us social media aficionados, Hootsuite exists.

In a nutshell Hootsuite is an online scheduler that links with your social media accounts, and automates your posts for whatever time and date you program.
It IS a subscription based program, BUT for small companies or individuals, the free tier it offers is more than enough (Unless you are crazy and prepare over 30 posts upfront). Nothing to lose really, so give it a try!

As Easy As It Gets

Using Hootsuite is actually as simple as one might hope it gets:

  1. Make your account.
  2. Link your social media.
  3. Prepare your posts.
  4. Let them be auto-posted.
So in theory, and if you want, you can prepare a week content's upfront and let it be gradually shared as said week passes.
Not like I do that or anything like that, hehe.

Use Hootsuite Today!

More Software Suggestions HERE

This is but one of MANY tools that you can quickly find in the the Software Suggestions section of the website.

New ones are constantly updated, so check out often!

See More Recommended Software!

Hootsuite is one of those tools that you cannot go without after using it a couple of times.

It is much simpler to prepare content you want in a single sitting, while keeping your thought train intact for whatever you are doing.

So I hope anyone gets to use it as much as I know I do.

But Regardless of What You Do With The Tool...

Thank you very much for reading my blog :3

Circles, Squares, Triangles. Simple Shapes To Use From The Get-Go

You are building your game, and suddenly came to the realization you need a simple sprite as a placeholder, or as the main shape for a particle system. Whetever the case, you are in need of a white basic shape to color over.

Just to give an example, we simply want a simple triangle to make a fire effect by resizing, and coloring it different shades of red and orange.

Well, you could easily go out of your way and google something along the lines of "white triangle png" and bring back anything the serach results give you. Or even better, you can open almost any Adobe program, and draw that graphic you want yourself, then bring it back.

But here is the thing, it is just a triangle, a simple, three vertices shape. If you make it with either of this methods you might end up needing to resize, reformat or even try to lower its file size BEFORE actually using it.

Something so simple should surely have an easier way to do, right? Well, you are correct.

Hidden At Plain Sight

To immediately access the simple collection of sprites, you only need to navigate through:

(Right Click In The Inspector) > Create > Sprites > (Pick One)
Not only they are handy, but super optimized as well, coming in as small as 4x4 pixels in size. (Given their simple nature, scaling is way better than one might expect)

Enjoy~

See The Wiki Entry

Get More Useful Tips On The GitHub Wiki

What you just read about was ONE of several unity tips that are available on the Unity Tips Wiki.

Please also note that the wiki is updated often, so make sure to check it out!

Read More Unity Tips!

Here you go, now you now Unity a little better than before. I hope you get to use it.

And Like Always…

Thank you very much for reading my blog :3