UnityEditor.StyleDrawInspectView.DrawInspectedStyle C# (CSharp) Méthode

DrawInspectedStyle() private méthode

private DrawInspectedStyle ( ) : void
Résultat void
        private void DrawInspectedStyle()
        {
            EditorGUI.BeginChangeCheck();
            EditorGUILayout.PropertyField(this.m_CachedinstructionInfo.styleSerializedProperty, GUIContent.Temp("Style"), true, new GUILayoutOption[0]);
            if (EditorGUI.EndChangeCheck())
            {
                this.m_CachedinstructionInfo.styleContainerSerializedObject.ApplyModifiedPropertiesWithoutUndo();
                base.m_GuiViewDebuggerWindow.m_Inspected.Repaint();
            }
        }