Answers for "unity tooltip"

C#
2

unity tooltip

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

unity variable tooltip

[Tooltip("Health value between 0 and 100.")]
int health = 100;
Posted by: Guest on March-30-2021

C# Answers by Framework

Browse Popular Code Answers by Language