Header的使用:
使用Header可以让你的Inspector面板显示的更清晰,更有条理。
1 2 3 4 5 6 7 8 9 10 11 12 |
using UnityEngine; using System.Collections; public class Test : MonoBehaviour { [Header("Health Settings")] public int health = 0; public int maxHealth = 100; [Header("Shield Settings")] public int shield = 0; public int maxShield = 0; } |
- 本文固定链接: http://www.u3d8.com/?p=663
- 转载请注明: 网虫虫 在 u3d8.com 发表过