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