Unity Solar System Tutorial | Unity Tutorial
Dive into the universe of game development with our Unity 2D Solar System creation guide! This concise tutorial will walk you through the essentials of building a vibrant and interactive 2D solar system in Unity. Learn to design and animate planets, set up realistic orbits, and bring your cosmic scene to life with simple yet effective techniques. Perfect for beginners and intermediate developers alike, this guide will help you craft a stellar project and elevate your Unity skills.
WATCH FULL TUTORIAL ON YOUTUBE
=========================================================
Unity Projects - ON SALE!!!
1. Water Sort Puzzle 9000 Levels
2. Ball Sort Puzzle 9000 Levels
3. Sling Shot
=========================================================
Script:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SolarSystem2D : MonoBehaviour
{
public float speed = 40;
// Use this for initialization
void Update () {
transform.Rotate (new Vector3 (0, 0, Time.deltaTime * speed));
}
}