StrippingInfo.GetReasonsForIncluding

매뉴얼로 전환
public IEnumerable<string> GetReasonsForIncluding (string entityName);

파라미터

entityNameThe name of an engine module, class, or other entity present in the build.

반환

IEnumerable<string> A list of modules, classes, or other entities that caused the provided entity to be included in the build.

설명

Returns the list of dependencies or reasons that caused the given entity to be included in the build.

The returned list of strings may include names of components, internal engine objects, other modules, or other human-readable reasons. To obtain further information, you can pass each string back into GetReasonsForIncluding again.

For example, calling GetReasonsForIncluding("Physics Module") may return a list that includes "Rigidbody", and you can then call GetReasonsForIncluding("Rigidbody") to get more information about which Scenes or assets are using the Rigidbody component.