Answers for "set description for an variable in unity"

C#
0

unity variable description

using UnityEngine;public class Example : MonoBehaviour
{
    [Tooltip("Health value between 0 and 100.")]
    int health = 0;
}
Posted by: Guest on January-22-2021

Code answers related to "set description for an variable in unity"

C# Answers by Framework

Browse Popular Code Answers by Language