enum mrpt::viz::CAssimpModel::LoadFlags::flags_t

Overview

#include <CAssimpModel.h>

enum flags_t
{
    RealTimeFast        = 0x0001,
    RealTimeQuality     = 0x0002,
    RealTimeMaxQuality  = 0x0004,
    FlipUVs             = 0x0010,
    IgnoreMaterialColor = 0x0100,
    IgnoreTextures      = 0x0200,
    Verbose             = 0x1000,
};

Detailed Documentation

Enum Values

RealTimeFast

See: aiProcessPreset_TargetRealtime_Fast Basic optimizations, fast loading.

RealTimeQuality

See: aiProcessPreset_TargetRealtime_Quality Good balance of quality and speed.

RealTimeMaxQuality

See: aiProcessPreset_TargetRealtime_MaxQuality Maximum quality, slower loading.

FlipUVs

See: aiProcess_FlipUVs Flip texture V coordinates (needed for some formats).

IgnoreMaterialColor

MRPT-specific: ignore material colors from the file and use the base class CVisualObject uniform color instead.

Useful when you want to override the model’s colors. (New in MRPT 2.5.0)

IgnoreTextures

MRPT-specific: ignore textures from the file.

The model will be rendered with solid colors only. (New in MRPT 3.0.0)

Verbose

Displays verbose messages during loading (textures, meshes, etc.)