Мои Уведомления
Привет, !
Мой Аккаунт Мои Финансы Мои Подписки Мои Настройки Выход
Руководство API скрипты

RequiredInterfaceAttribute

класс в UnityEngine.Scripting / Реализовано в: UnityEngine.CoreModule

Описание

Когда отмечен тип, все реализации интерфейса указанных типов будут отмечены.

using System; using UnityEngine; using UnityEngine.Scripting;

public class NewBehaviourScript : MonoBehaviour { void Start() { new Foo(); new Bar(); new Jar(); new GenericFoo(); } }

interface IUnused {}

interface IFoo {}

interface IGeneric<T> {}

// Foo сохранит IFoo. IUnused будет удален [RequiredInterface(typeof(IFoo))] class Foo : IFoo, IUnused {}

// Bar сохранит IGeneric<int> и IGeneric<double>. IGeneric<string> будет удален [RequiredInterface(typeof(IGeneric<int>))] [RequiredInterface(typeof(IGeneric<double>))] class Bar : IGeneric<int>, IGeneric<string>, IGeneric<double> {}

// Jar сохранит IGeneric<int>, IGeneric<string> и IGeneric<double> [RequiredInterface(typeof(IGeneric<>))] class Jar : IGeneric<int>, IGeneric<string>, IGeneric<double> {}

// GenericFoo<T> сохранит IGeneric<T> [RequiredInterface(typeof(IGeneric<>))] class GenericFoo<T> : IGeneric<T> {}
Вы можете отблагодарить автора, за перевод документации на русский язык. ₽ Спасибо
API скрипты 2021.3