예제 #1
0
    void DrawValue(Rect position, SerializedProperty property)
    {
        if (property == null)
        {
            position.yMax = position.y + fontSize;
            GUI.Label(position, "Missing");
            return;
        }

        EditorGUIHelper.DrawPropertyRecursivly(position, property);
    }