Exemplo n.º 1
0
        public override void OnGUI(Rect position, SerializedProperty prop, GUIContent label)
        {
            SerializedProperty valueProp = prop.GetMemberProperty <SecureInt>(i => i.Value);

            if (EditorApplication.isPlaying)
            {
                SecureInt self = fieldInfo.GetValue(prop.serializedObject.targetObject) as SecureInt;
                EditorGUI.BeginChangeCheck();
                int value = EditorGUI.IntField(position, label, self.Value);
                if (EditorGUI.EndChangeCheck())
                {
                    self.Value         = value;
                    valueProp.intValue = self.EncryptedValue;
                }
            }
            else
            {
                EditorGUI.PropertyField(position, valueProp, label);
            }
        }
Exemplo n.º 2
0
        public override bool Equals(object obj)
        {
            SecureInt other = obj as SecureInt;

            return(other != null && Value == other.Value);
        }