Skip to content

Instantly share code, notes, and snippets.

@jcguarinpenaranda
Created August 8, 2015 22:45
Show Gist options
  • Save jcguarinpenaranda/89bc7cd35c5e3b7f1393 to your computer and use it in GitHub Desktop.
Save jcguarinpenaranda/89bc7cd35c5e3b7f1393 to your computer and use it in GitHub Desktop.
Load a level Additively in Unity 3d
using UnityEngine;
using System.Collections;
public class LoadAdditive : MonoBehaviour {
public void LoadAddOnClick(int level)
{
Application.LoadLevelAdditive(level);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment