|
static bool | DrawLocalizedStringField (string _label, ref LocalizedString _targetLocalizedString) |
|
static bool | DrawLocalizedStringField (string _label, string _tooltip, ref LocalizedString _targetLocalizedString) |
|
static bool | DrawLocalizedAudioClipField (string _label, ref LocalizedAudioClip _targetLocalizedAudioClip) |
|
static bool | DrawLocalizedAudioClipField (string _label, string _tooltip, ref LocalizedAudioClip _targetLocalizedAudioClip) |
|
static bool | DrawLocalizedFontField (string _label, ref LocalizedFont _targetLocalizedFont) |
|
static bool | DrawLocalizedFontField (string _label, string _tooltip, ref LocalizedFont _targetLocalizedFont) |
|
static bool | DrawLocalizedGameObjectField (string _label, ref LocalizedGameObject _targetLocalizedGameObject) |
|
static bool | DrawLocalizedGameObjectField (string _label, string _tooltip, ref LocalizedGameObject _targetLocalizedGameObject) |
|
static bool | DrawLocalizedMaterialField (string _label, ref LocalizedMaterial _targetLocalizedMaterial) |
|
static bool | DrawLocalizedMaterialField (string _label, string _tooltip, ref LocalizedMaterial _targetLocalizedMaterial) |
|
static bool | DrawLocalizedMeshField (string _label, ref LocalizedMesh _targetLocalizedMesh) |
|
static bool | DrawLocalizedMeshField (string _label, string _tooltip, ref LocalizedMesh _targetLocalizedMesh) |
|
static bool | DrawLocalizedObjectField (string _label, ref LocalizedObject _targetLocalizedObject) |
|
static bool | DrawLocalizedObjectField (string _label, string _tooltip, ref LocalizedObject _targetLocalizedObject) |
|
static bool | DrawLocalizedSpriteField (string _label, ref LocalizedSprite _targetLocalizedSprite) |
|
static bool | DrawLocalizedSpriteField (string _label, string _tooltip, ref LocalizedSprite _targetLocalizedSprite) |
|
static bool | DrawLocalizedTextureField (string _label, ref LocalizedTexture _targetLocalizedTexture) |
|
static bool | DrawLocalizedTextureField (string _label, string _tooltip, ref LocalizedTexture _targetLocalizedTexture) |
|
static bool | DrawLocalizedTmpFontField (string _label, ref LocalizedTmpFont _targetLocalizedTmpFont) |
|
static bool | DrawLocalizedTmpFontField (string _label, string _tooltip, ref LocalizedTmpFont _targetLocalizedTmpFont) |
|
static bool | IsSelected () |
|
static bool | IsOffScreen () |
|
static void | AddMainInPoint () |
|
static void | AddMainOutPoint () |
|
static void | AddPropertyInPoint< T > () |
|
static void | AddPropertyInPoint (System.Type _type) |
|
static void | AddPropertyOutPoint< T > () |
|
static void | AddPropertyOutPoint (System.Type _type) |
|
static void | RemoveInPoint (int _index) |
|
static void | RemoveOutPoint (int _index) |
|
static bool | HasMainInPoint () |
|
static void | DrawInPoint (int _inputPointIndex) |
|
static void | DrawOutPoint (int _outputPointIndex) |
|
static void | AddRectHeight (float _height) |
|
static Rect | GetRect (int _lineCount=1, int _indent=0) |
|
static void | GetSingleLineLabeledRect (out Rect labelRect, out Rect valueRect) |
|
static void | PropertySpace () |
|
static bool | ValidateObsoleteCrossSceneField< T1, T2 > (ref T1 oldTargetObject, ref TargetObject< T2 > newTargetObject) |
|
static void | DrawFoldoutGroup (string _label, ref bool _targetBool, Action _onDrawContent) |
|
static void | DrawFoldoutGroup (string _label, string _tooltip, ref bool _targetBool, Action _onDrawContent) |
|
static void | BeginFoldoutGroup (string _label, ref bool _targetBool) |
|
static void | BeginFoldoutGroup (string _label, string _tooltip, ref bool _targetBool) |
|
static void | EndFoldoutGroup () |
|
static void | DrawLabel (Rect _rect, string _label, bool _alignRight=false) |
|
static void | DrawLabel (Rect _rect, string _label, string _tooltip, bool _alignRight=false) |
|
static void | DrawLabel (string _label, bool _alignRight=false) |
|
static void | DrawLabel (string _label, string _tooltip, bool _alignRight=false) |
|
static void | DrawTextField (string _label, ref string _targetText) |
|
static void | DrawTextField (string _label, string _tooltip, ref string _targetText) |
|
static void | DrawTextAreaField (string _label, ref string _targetText, int _lineCount=2, bool _wordWrap=true) |
|
static void | DrawTextAreaField (string _label, string _tooltip, ref string _targetText, int _lineCount=2, bool _wordWrap=true) |
|
static void | DrawRoundedFloatField (string _label, ref float _targetFloat, float _min=float.MinValue, float _max=float.MaxValue) |
|
static void | DrawRoundedFloatField (string _label, string _tooltip, ref float _targetFloat, float _min=float.MinValue, float _max=float.MaxValue) |
|
static void | DrawFloatField (string _label, ref float _targetFloat, float _min=float.MinValue, float _max=float.MaxValue) |
|
static void | DrawFloatField (string _label, string _tooltip, ref float _targetFloat, float _min=float.MinValue, float _max=float.MaxValue) |
|
static void | DrawFloatSliderField (string _label, ref float _targetFloat, float _min, float _max) |
| Will be shown as ordinary Float Field if node width is not wide enough. Use nodeWidth 240 at minimum. More...
|
|
static void | DrawFloatSliderField (string _label, string _tooltip, ref float _targetFloat, float _min, float _max) |
| Will be shown as ordinary Float Field if node width is not wide enough. Use nodeWidth 240 at minimum. More...
|
|
static void | DrawIntField (string _label, ref int _targetInt, int _min=int.MinValue, int _max=int.MaxValue) |
|
static void | DrawIntField (string _label, string _tooltip, ref int _targetInt, int _min=int.MinValue, int _max=int.MaxValue) |
|
static void | DrawIntSliderField (string _label, ref int _targetInt, int _min, int _max) |
|
static void | DrawIntSliderField (string _label, string _tooltip, ref int _targetInt, int _min, int _max) |
|
static void | DrawToggleField (string _label, ref bool _targetBool) |
|
static void | DrawToggleField (string _label, string _tooltip, ref bool _targetBool) |
|
static void | DrawToggleLeftField (string _label, ref bool _targetBool) |
|
static void | DrawToggleLeftField (string _label, string _tooltip, ref bool _targetBool) |
|
static void | DrawObjectField< T > (string _label, T _currentObject, Action< T > _onObjectChanged, bool _allowSceneObjects=false) |
|
static void | DrawObjectField< T > (string _label, string _tooltip, T _currentObject, Action< T > _onObjectChanged, bool _allowSceneObjects=false) |
|
static void | DrawObjectField (string _label, UnityEngine.Object _currentObject, Action< UnityEngine.Object > _onObjectChanged, System.Type _objectType, bool _allowSceneObjects=false) |
|
static void | DrawObjectField (string _label, string _tooltip, UnityEngine.Object _currentObject, Action< UnityEngine.Object > _onObjectChanged, System.Type _objectType, bool _allowSceneObjects=false) |
|
static void | DrawBinderField< T > (string _label, T _currentObject, Action< T > _onObjectChanged, Func< UnityEngine.Object, UnityEngine.Object > _customValidateDraggedObject=null) |
|
static void | DrawBinderField< T > (string _label, string _tooltip, T _currentObject, Action< T > _onObjectChanged, Func< UnityEngine.Object, UnityEngine.Object > _customValidateDraggedObject=null) |
|
static void | DrawTargetObjectField< T > (string _label, string _tooltip, ref TargetObject< T > _targetObjectRef) |
|
static void | DrawTargetObjectField< T > (string _label, ref TargetObject< T > _targetObjectRef) |
|
static void | DrawTargetObjectField< T > (Command _command, int _propertyInputIndex, string _label, ref TargetObject< T > _targetObjectRef) |
|
static void | DrawTargetObjectField< T > (Command _command, int _propertyInputIndex, string _label, string _tooltip, ref TargetObject< T > _targetObjectRef) |
|
static void | DrawTargetObjectField (System.Type _targetObjectType, string _label, string _tooltip, ref ITargetObject _targetObjectRef) |
|
static void | DrawTargetObjectField (System.Type _targetObjectType, string _label, ref ITargetObject _targetObjectRef) |
|
static void | DrawTargetObjectField (System.Type _targetObjectType, Command _command, int _propertyInputIndex, string _label, string _tooltip, ref ITargetObject _targetObjectRef) |
|
static void | DrawReferenceModeField (string _label, string _tooltip, ITargetObject _targetObjectRef) |
|
static void | DrawCrossSceneRefField< T > (string _label, string _tooltip, TargetObject< T > _targetObject) |
|
static void | DrawCrossSceneRefField (string _label, string _tooltip, ITargetObject _targetObject, System.Type _objectType) |
|
static void | DrawColorField (string _label, ref Color _targetColor) |
|
static void | DrawColorField (string _label, string _tooltip, ref Color _targetColor) |
|
static void | DrawCurveField (string _label, AnimationCurve _currentCurve, Action< AnimationCurve > _onChangeCurve) |
|
static void | DrawCurveField (string _label, string _tooltip, AnimationCurve _currentCurve, Action< AnimationCurve > _onChangeCurve) |
|
static void | DrawEnumField< T > (string _label, ref T _targetEnum) |
|
static void | DrawEnumField< T > (string _label, string _tooltip, ref T _targetEnum) |
|
static void | DrawEnumField (string _label, System.Type _enumType, System.Enum _targetEnum, Action< System.Enum > _onValueChanged) |
|
static void | DrawEnumField (string _label, string _tooltip, System.Type _enumType, System.Enum _targetEnum, Action< System.Enum > _onValueChanged) |
|
static void | DrawVector3Field (string _label, ref Vector3 _targetVector) |
|
static void | DrawVector3Field (string _label, string _tooltip, ref Vector3 _targetVector) |
|
static void | DrawVector3IntField (string _label, ref Vector3Int _targetVector) |
|
static void | DrawVector3IntField (string _label, string _tooltip, ref Vector3Int _targetVector) |
|
static void | DrawVector2Field (string _label, ref Vector2 _targetVector) |
|
static void | DrawVector2Field (string _label, string _tooltip, ref Vector2 _targetVector) |
|
static void | DrawVector2IntField (string _label, ref Vector2Int _targetVector) |
|
static void | DrawVector2IntField (string _label, string _tooltip, ref Vector2Int _targetVector) |
|
static void | DrawVector4Field (string _label, ref Vector4 _targetVector) |
|
static void | DrawVector4Field (string _label, string _tooltip, ref Vector4 _targetVector) |
|
static void | DrawRectField (string _label, ref Rect _targetRect) |
|
static void | DrawRectField (string _label, string _tooltip, ref Rect _targetRect) |
|
static void | DrawRectIntField (string _label, ref RectInt _targetRect) |
|
static void | DrawRectIntField (string _label, string _tooltip, ref RectInt _targetRect) |
|
static void | DrawBoundsField (string _label, ref Bounds _targetBounds) |
|
static void | DrawBoundsField (string _label, string _tooltip, ref Bounds _targetBounds) |
|
static void | DrawBoundsIntField (string _label, ref BoundsInt _targetBounds) |
|
static void | DrawBoundsIntField (string _label, string _tooltip, ref BoundsInt _targetBounds) |
|
static void | DrawPopupField (string _label, int _currentIndex, string[] _options, Action< int > _onValueChanged) |
|
static void | DrawPopupField (string _label, string _tooltip, int _currentIndex, string[] _options, Action< int > _onValueChanged) |
|