Unity编辑器扩展插件NaughtyAttributes介绍

注:文章转自Github NaughtyAttributes官方介绍,仅供个人学习,侵权请告知


 

实用的Inspector扩展

重要程度:一般

https://github.com/dbrizov/NaughtyAttributes

 

此组件常用类似于序列化,将脚本中的一些变量可视化、可调节话、可选择话

 

 

NaughtyAttributes

NaughtyAttributes is an extension for the Unity Inspector.

It expands the range of attributes that Unity provides so that you can create powerful inspectors without the need of custom editors or property drawers. It also provides attributes that can be applied to non-serialized fields or functions.

It is implemented by replacing the default Unity Inspector. This means that if you have any custom editors, NaughtyAttributes will not work with them. All of your custom editors and property drawers are not affected in any way.

System Requirements

Unity 2017.1.0 or later versions. Feel free to try older version. Don't forget to include the NaughtyAttributes namespace.

Drawer Attributes

Provide special draw options to serialized fields. A field can have only one DrawerAttribute. If a field has more than one, only the bottom one will be used.

Slider

The same as Unity's Range attribute. There is no difference between the two, you can use whatever you like, I just wanted to support a custom slider attribute.

 

MinMaxSlider

A double slider. The min value is saved to the X property, and the max value is saved to the Y property of a Vector2 field.

 

ReorderableList

Provides array type fields with an interface for easy reordering of elements.

 

 

Button

A method can be marked as a button. A button appears in the inspector and executes the method if clicked. Works both with instance and static methods.

 

 

Dropdown

Provides an interface for dropdown value selection.

 

 

ResizableTextArea

A resizable text area where you can see the whole text. Unlike Unity's Multiline and TextArea attributes where you can see only 3 rows of a given text, and in order to see it or modify it you have to manually scroll down to the desired row.

 

 

ShowNonSerializedField

Shows non-serialized fields in the inspector. All non-serialized fields are displayed at the bottom of the inspector before the method buttons. Keep in mind that if you change a non-static non-serialized field in the code - the value in the inspector will be updated after you press Play in the editor. There is no such issue with static non-serialized fields because their values are updated at compile time. It supports only certain types (bool, int, long, float, double, string, Vector2, Vector3, Vector4, Color, Bounds, Rect, UnityEngine.Object).

 

 

ShowNativeProperty

Shows native C# properties in the inspector. All native properties are displayed at the bottom of the inspector after the non-serialized fields and before the method buttons. It supports only certain types (bool, int, long, float, double, string, Vector2, Vector3, Vector4, Color, Bounds, Rect, UnityEngine.Object).

 

 

ReadOnly

Makes a field read only.

 

EnableIf / DisableIf

 

 

You can have more than one condition.

 

ShowAssetPreview

Shows the texture preview of a given asset (Sprite, Prefab...)

 

 

ProgressBar

 

 

Label

Override default field label

 

 

Tag

Enable Tag selection with string field

 

 

DrawCondition Attributes

Can be used to specify when a given serialized field is visible, and when not. A field can have only one DrawConditionAttribute.

ShowIf / HideIf

 

 

You can have more than one condition.

 

Group Attributes

Serialized fields can be grouped in different groups. A field can have only one GroupAttribute. If a field has more than one, only the bottom one will be used.

BoxGroup

Surrounds grouped fields with a box.

 

 

Validator Attributes

Used for validating the fields. A field can have infinite number of validator attributes.

MinValue / MaxValue

Clamps integer and float fields.

 

Required

Used to remind the developer that a given reference type field is required.

 

 

ValidateInput

The most powerful ValidatorAttribute.

 

 

Meta Attributes

Give the fields meta data. A field can have infinite number of meta attributes.

InfoBox

Used for providing additional information.

 

 

OnValueChanged

Detects a value change and executes a callback. Keep in mind that the event is detected only when the value is changed from the inspector. If you want a runtime event, you should probably use an event/delegate and subscribe to it.

 

How to create your own attributes

Lets say you want to implement your own [ReadOnly] attribute.

First you have to create a ReadOnlyAttribute class

[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]

public class ReadOnlyAttribute : DrawerAttribute

{

}

Then you need to create a drawer for that attribute

[PropertyDrawer(typeof(ReadOnlyAttribute))]

public class ReadOnlyPropertyDrawer : PropertyDrawer

{

    public override void DrawProperty(SerializedProperty property)

    {

        GUI.enabled = false;

        EditorGUILayout.PropertyField(property, true);

        GUI.enabled = true;

    }

}

Last, in order for the editor to recognize the drawer for this attribute, you have to press the Tools/NaughtyAttributes/Update Attributes Database menu item in the editor.

License

MIT License

Copyright (c) 2017 Denis Rizov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Measure

Measure

 

  • 0
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值