Share

AcGiRegenType

C++

typedef enum {
  eAcGiRegenTypeInvalid = 0,
  kAcGiStandardDisplay = 2,
  kAcGiHideOrShadeCommand,
  kAcGiRenderCommand,
  kAcGiShadedDisplay = kAcGiRenderCommand,
  kAcGiForExplode,
  kAcGiSaveWorldDrawForProxy
} AcGiRegenType;

File

acgidefs.h

Members

Members Description
eAcGiRegenTypeInvalid Invalid regen type.
kAcGiStandardDisplay Regenerating for 2D wireframe display.
kAcGiHideOrShadeCommand Regenerating for legacy hide or shade commands.
kAcGiRenderCommand Regenerating for rendered display. This flag is deprecated and maps to kAcGiShadedDisplay.
kAcGiShadedDisplay Regenerating for 3D shaded display.
kAcGiForExplode Regenerating for explode.
kAcGiSaveWorldDrawForProxy Regenerating for proxy.

Description

This enum describes the types of elaboration that can occur on regeneration.

Was this information helpful?