What is a Rigidbody in Unity?

If you are using a GameObject that needs to interact with Unity’s physics engine, then you need a Rigidbody component added to it. A Rigidbody component allows you to control a GameObject‘s position and movement and mass through realistic physics calculations already built in Unity. There are many properties and functions associated with Rigidbodys, and…

Unity Scripting Tutorial

Scripting in Unity allows a developer to manipulate GameObjects to perform specific actions. Learning scripting is integral to creating a fun and interactive experience for a player. There are several functions, or methods, in Unity that handle much of the code execution. Unity also has best practices for when and why you would use a…

What is a GameObject in Unity?

GameObjects are central to the development of most apps made in Unity. So what is a GameObject? GameObjects are the main objects in Unity. They are containers that can represent characters, lighting, cameras, scenery, and more. You can add Components to GameObjects to increase their functionality. Because GameObjects are such an important topic in Unity,…

How to Make an Object Orbit Another in Unity

Would you like to make one object orbit another object in Unity like the earth revolves around the sun? To make an object orbit, or revolve around, an object, use the RotateAround() function on the gameobject that is revolving around another object, or point. Specify parameters for the target the gameobject will revolve around, which…