Exemplo n.º 1
0
    public static void Draw(SerializedProperty fieldProperty, GUIContent label, Transform self = null)
    {
        if (self == null)
        {
            self = GetSelfTrans(fieldProperty.serializedObject);
        }

        if (self == null)
        {
            return;
        }

        InternalEditor.Draw(fieldProperty, label, self);
    }