版本: Unity 6 (6000.0)
语言英语
  • C#

RequireDerivedAttribute

UnityEngine.Scripting 中的类

/

实现于:UnityEngine.CoreModule

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实阅读了用户提出的每个建议更改,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

当标记该类型时,从该类型派生的所有类型也将被标记。

using System;
using UnityEngine;
using UnityEngine.Scripting;

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

[RequireDerived] class Foo {}

// UnusedFoo is not used, however, it will survive managed code stripping due to Foo having the [RequireDerived] attribute. class UnusedFoo : Foo { // Note that unused members of UnusedFoo will still be removed by managed code stripping public static void UnusedMethod() {} }

// Bar is not used so it will be removed by managed code stripping [RequireDerived] class Bar {}

// Because Bar is not used, the [RequireDerived] attribute on Bar has no impact. UnusedBar will also be removed. class UnusedBar : Bar {}