Files
Continentis/Assets/OtherPlugins/NaughtyAttributes/Scripts/Test/ResizableTextAreaTest.cs
SoulliesOfficial 61a397dd4c MOD!
2025-10-23 00:49:44 -04:00

29 lines
548 B
C#

using UnityEngine;
namespace NaughtyAttributes.Test
{
public class ResizableTextAreaTest : MonoBehaviour
{
[ResizableTextArea]
public string text0;
public ResizableTextAreaNest1 nest1;
}
[System.Serializable]
public class ResizableTextAreaNest1
{
[ResizableTextArea]
public string text1;
public ResizableTextAreaNest2 nest2;
}
[System.Serializable]
public class ResizableTextAreaNest2
{
[ResizableTextArea]
public string text2;
}
}