Created
May 23, 2017 01:55
-
-
Save unity3dcollege/1ce99a96a3bbf6caede39ea2ae220ca8 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
[Header("Numeric Attributes")] | |
[Tooltip("A float using the Range attribute")] | |
[Range(-5f, 5f)] | |
[SerializeField] | |
private float rangedFloat; | |
[Space] | |
[Tooltip("An integer using the Range attribute")] | |
[Range(-5, 5)] | |
[SerializeField] | |
private int rangedInt; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment