Пример #1
0
        void ShowMapId()
        {
            if (_spOffset.intValue != 0 &&
                !Enum.IsDefined(typeof(EKeyIdOffset), _spOffset.intValue))
            {
                _spOffset.intValue = 0;
            }

            EKeyIdOffset offset = (EKeyIdOffset)_spOffset.intValue;

            offset = (EKeyIdOffset)EditorGUILayout.EnumPopup(_spOffset.displayName, offset);

            _spOffset.intValue = (int)offset;
        }
Пример #2
0
        public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
        {
            if (property.propertyType != SerializedPropertyType.Integer)
            {
                Debug.LogError("IDオフセットにint型以外は使用できません");
                return;
            }

            if (property.intValue != 0 &&
                !Enum.IsDefined(typeof(EKeyIdOffset), property.intValue))
            {
                Debug.LogWarning("プロパティはKeyIdOffset型のメンバーではありません");
            }

            EKeyIdOffset curId = (EKeyIdOffset)property.intValue;
            EKeyIdOffset newId = (EKeyIdOffset)EditorGUI.EnumPopup(position, label, curId);

            property.intValue = (int)newId;
        }