#3,847 in Computers & technology books

Reddit mentions of Unity 5 Game Optimization: Master performance optimization for Unity3D applications with tips and techniques that cover every aspect of the Unity3D Engine

Sentiment score: 1
Reddit mentions: 2

We found 2 Reddit mentions of Unity 5 Game Optimization: Master performance optimization for Unity3D applications with tips and techniques that cover every aspect of the Unity3D Engine. Here are the top ones.

Unity 5 Game Optimization: Master performance optimization for Unity3D applications with tips and techniques that cover every aspect of the Unity3D Engine
Buying options
View on Amazon.com
or
    Features:
  • Measures 7.5 inches/19cm by 3 inches/7.5cm diameter and holds 10 ounces
  • Made of glass, stainless steel handle and lid and silicone dipper
  • Silicone dipper won't melt, shed, fray, stain, lose shape or retain odors
  • Hand washing recommended
Specs:
Height9.25 Inches
Length7.5 Inches
Number of items1
Release dateNovember 2015
Weight1.13 Pounds
Width0.67 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 2 comments on Unity 5 Game Optimization: Master performance optimization for Unity3D applications with tips and techniques that cover every aspect of the Unity3D Engine:

u/bonzaiferroni ยท 2 pointsr/Unity3D

The most important way I avoid confusing code is a message system where scripts interact not by referencing each other directly but send messages "to whomever it may concern." This could be 100 other scripts or none at all. Scripts that are listening for those particular messages get them and any relevant information, but are effectively agnostic of each other so really effective decoupling.

Basically the observer pattern as I understand the term. Lots of discussion of that idea in this post.

I use something similar to the MessageKit tool that prime31 references in the top post, one that I adapted from this book.

I don't use this for everything, I'm not opposed to just including a direct reference where it makes most sense. Occam's razor all the things.

If you use this along with the single responsibility principle when defining your classes, you have super concise classes that are easy to understand at first glance and very reusable.

u/LarryRyan0824 ยท 1 pointr/Unity3D

You need to buy the book Unity 5 Game Optimization . Goes over things you've asked and more.