Version: Unity 6.4 Alpha (6000.4)
LanguageEnglish
  • C#

BuildProfileSettingsProvider

class in UnityEditor.Build.Profile

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Provides the display information for a custom settings section in the Build Profile window.

Additional resources: BuildProfileSettingsProviderAttribute.

using UnityEngine;
using UnityEditor.Build.Profile;

class SampleSettings : ScriptableObject { public bool myBoolSetting; [BuildProfileSettingsProvider(typeof(SampleSettings))] static BuildProfileSettingsProvider createProvider() => new BuildProfileSettingsProvider("MySampleSettings") { tooltip = "Sample settings provider for a ScriptableObject." }; }

Properties

Property Description
canAddSettingCallback that determines if the settings object this provider describes can be added to the given build profile.
displayNameDisplay name for the settings section in the Build Profile window.
hasCustomEditorWhen the value is true, Unity uses a custom implementation of an Editor. Otherwise, Unity displays the default inspector for the settings object.
tooltipTooltip text for the custom settings section. If this value is empty, no tooltip is displayed.