Last active
September 5, 2020 07:15
-
-
Save curegit/3859c918928f36aa7019a77331bc7926 to your computer and use it in GitHub Desktop.
インスペクター拡張で tooltip 表示
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 override void OnInspectorGUI() | |
{ | |
Target.testFloat = EditorGUILayout.FloatField(new GUIContent("Test Float", "Here is a tooltip"), Target.testFloat); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment