Tag Programming

Understanding Time.deltaTime in Unity

Watch

When developing games in Unity, you’ll often come across a powerful and essential tool called Time.deltaTime. If you inspect any code written for a Unity game you will see this used often. If you’re new to Unity, this might seem…

Why You Should Avoid Public Variables in Unity

Crime Scene

Using public variables in Unity can seem like a quick way to make values editable in the Inspector or accessible across scripts. After all, every YouTuber does it, what can go wrong? Actually, a lot can go very wrong. This…