MayaFlux 0.5.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ register_with_registry()

void MayaFlux::IO::AssimpModelWriter::register_with_registry ( )
static

Register this writer with the ModelWriterRegistry.

Called from engine/subsystem init. Idempotent.

Definition at line 82 of file AssimpModelWriter.cpp.

83{
85 reg.register_writer(
86 { "dae", "obj", "stl", "ply", "3ds", "gltf", "glb", "fbx", "x3d", "json" },
87 []() -> std::unique_ptr<ModelWriter> {
88 return std::make_unique<AssimpModelWriter>();
89 });
90
92 "AssimpModelWriter registered for: dae, obj, stl, ply, 3ds, gltf, glb, fbx, x3d, json");
93}
#define MF_INFO(comp, ctx,...)
static ModelWriterRegistry & instance()
@ Init
Engine/subsystem initialization.
@ IO
Networking, file handling, streaming.

References MayaFlux::Journal::Init, MayaFlux::IO::ModelWriterRegistry::instance(), MayaFlux::Journal::IO, and MF_INFO.

Referenced by MayaFlux::IO::IOManager::IOManager().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: