ReadOnlyAttribute.cs 197 B

123456789101112
  1. using UnityEngine;
  2. namespace QFramework
  3. {
  4. /// <summary>
  5. /// 让数据在编辑器中只读
  6. /// </summary>
  7. public class ReadOnlyAttribute : PropertyAttribute
  8. {
  9. }
  10. }