Table of Contents

Class BuildPhase

Namespace
nadena.dev.ndmf

Build Phases provide a coarse mechanism for grouping passes for execution. Each build phase has a recommended usage to help avoid ordering conflicts without needing explicit constraints.

Currently, the following phases are defined:

  • Resolving
  • Generating
  • Transforming
  • Optimizing
public sealed class BuildPhase
Inheritance
BuildPhase
Inherited Members

Fields

BuiltInPhases

This list contains all built-in phases in the order that they will be executed.

public static readonly ImmutableList<BuildPhase> BuiltInPhases

Field Value

ImmutableList<BuildPhase>

Generating

The generating phase is intended for use by asses which generate components used by later plugins. For example, if you want to generate components that will be used by Modular Avatar, this would be the place to do it.

public static readonly BuildPhase Generating

Field Value

BuildPhase

Optimizing

The optimizing phase is intended for pure optimizations that need to run late in the build process.

public static readonly BuildPhase Optimizing

Field Value

BuildPhase

Resolving

The resolving phase is intended for use by passes which perform very early processing of components and avatar state, before any large-scale changes have been made. For example, Modular Avatar uses this phase to resolve string-serialized object passes to their destinations, and to clone animation controllers before any changes are made to them.

NDMF also has a built-in phase in Resolving, which removes EditorOnly objects. For more information, see nadena.dev.ndmf.builtin.RemoveEditorOnlyPass.

public static readonly BuildPhase Resolving

Field Value

BuildPhase

Transforming

The transforming phase is intended for general-purpose avatar transformations. Most of Modular Avatar's logic runs here.

public static readonly BuildPhase Transforming

Field Value

BuildPhase

Properties

Name

public string Name { get; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.