Last active
May 23, 2017 01:48
-
-
Save unity3dcollege/d8b3f6a1678c3c9a48255dd98d3969ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TextAreaExample : MonoBehaviour | |
{ | |
[TextArea] | |
[Tooltip("A string using the TextArea attribute")] | |
[SerializeField] | |
private string descriptionTextArea; | |
[Multiline] | |
[Tooltip("A string using the MultiLine attribute")] | |
[SerializeField] | |
private string descriptionMultiLine; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment