UnityEditor.LightingWindowObjectTab.EditLightmapParameters C# (CSharp) Méthode

EditLightmapParameters() public méthode

public EditLightmapParameters ( ) : bool
Résultat bool
        public bool EditLightmapParameters()
        {
            Object[] filtered = Selection.GetFiltered(typeof(LightmapParameters), SelectionMode.Unfiltered);
            if (filtered.Length == 0)
            {
                return false;
            }
            EditorGUILayout.MultiSelectionObjectTitleBar(filtered);
            this.GetLightmapParametersEditor(filtered).OnInspectorGUI();
            GUILayout.Space(10f);
            return true;
        }