How to create a Virtual Reality App in Unity. After a just few minutes of work, you and your friends can fly around our beautiful Earth and have a look at the 5000 brightest stars. All in your own home made app. What’s not to like? Unity Intermediate Tutorial


❤️ Subscribe to Oxmond Tutorials. Stay ahead of the game:
https://bit.ly/SubscribeOxmondTutorials

✅ Download the free star skybox here (Real Stars Skybox):
https://assetstore.unity.com/packages/3d/environments/sci-fi/real-stars-skybox-116333?aid=1100l4p9k

✅ Download the free Earth Model here (Earth Rendering Free):
https://assetstore.unity.com/packages/vfx/shaders/earth-rendering-free-54914?aid=1100l4p9k

✅ Download the free Google VR SDK for Unity:
https://github.com/googlevr/gvr-unity-sdk/releases

✅ Other free Asset Packages at the Unity Assets Store:
https://assetstore.unity.com/lists/top-free-packages-13201?aid=1100l4p9k

😷👕 Need a face mask / developer T-shirt? Drop by our shop and get a 20% DISCOUNT on your first purchase by using the discount code OXMONDSALE. Click here:
https://shop.oxmond.com/discount/OXMONDSALE

The Earth rotation script:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Earth : MonoBehaviour
{
    void Update()
    {
        transform.Rotate(0f, 8f * Time.deltaTime, 0f);        
    }
}