You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/Plugins/NaughtyAttributes/Scripts/Test/SceneTest.cs

29 lines
372 B
C#

1 month ago
using UnityEngine;
namespace NaughtyAttributes.Test
{
public class SceneTest : MonoBehaviour
{
[Scene]
public string scene0;
public SceneNest1 nest1;
}
[System.Serializable]
public class SceneNest1
{
[Scene]
public string scene1;
public SceneNest2 nest2;
}
[System.Serializable]
public struct SceneNest2
{
[Scene]
public int scene2;
}
}