Game Development Engine
Unity is a cross-platform game engine used to build 2D, 3D games, AR/VR experiences, and simulations.
2D & 3D game development đŽ Physics engine âī¸ Animation system đšī¸ Cross-platform export đąđģđŽ
GameObject â has components Example: Player â Rigidbody + Collider + Script
Scene = Level / Map in game Example: Menu Scene Level 1 Scene Game Over Scene
using UnityEngine;
public class Player : MonoBehaviour {
void Update() {
transform.Translate(1 * Time.deltaTime, 0, 0);
}
}
Gravity đ Collision detection đĨ Rigidbody movement đ§ą
Mobile games đą PC/Console games đŽ AR/VR apps đĨŊ Simulation training đ§
Android đą iOS đ Windows đģ PlayStation đŽ WebGL đ