Skip to content

Instantly share code, notes, and snippets.

View Kuritsu243's full-sized avatar

Charlie Skinner Kuritsu243

  • Surrey, England
View GitHub Profile
@Hertzole
Hertzole / SceneObject.cs
Last active May 4, 2024 13:04
Unity scene object to easily assign scenes in the inspector.
using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
#endif
[System.Serializable]
public class SceneObject
{
[SerializeField]
private string m_SceneName;