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.
29 lines
372 B
C#
29 lines
372 B
C#
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;
|
|
}
|
|
}
|