Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SettingsProviderGroupAttribute

Attribute used to register multiple SettingsProvider items. Use this attribute to decorate a function that returns an array of SettingsProvider instances. If the function returns null, no SettingsProvider appears in the Settings window.
Read time 4 minutesLast updated 6 days ago

Definition

[AttributeUsage(AttributeTargets.Method)]public sealed class SettingsProviderGroupAttribute : Attribute

Examples

using System.IO;using System.Linq;using UnityEditor;class XRSettings : SettingsProvider{ const string k_XRSettingsFolder = "Assets/Editor/XRSettings"; public XRSettings(string path, SettingsScope scope = SettingsScope.Project) : base(path, scope) { } [SettingsProviderGroup] public static SettingsProvider[] CreateProviders() { var files = Directory.GetFileSystemEntries(k_XRSettingsFolder, "*.json"); return files.Select(entry => { // First parameter is the path of the settings in the Settings window. return new XRSettings("ProjectXRSettings" + Path.GetFileNameWithoutExtension(entry)); }).ToArray(); }}

Constructors

Constructor

Description

SettingsProviderGroupAttribute()Creates a SettingsProviderGroupAttribute used to register multiple SettingsProviders.

Inheritance

Inherited Members