Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tsd/src/tsd/app/Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ void Core::parseCommandLine(std::vector<std::string> &args)
importerType = tsd::io::ImporterType::USD2;
else if (arg == "-vtp")
importerType = tsd::io::ImporterType::VTP;
else if (arg == "-vtu")
importerType = tsd::io::ImporterType::VTU;
else if (arg == "-xyzdp")
importerType = tsd::io::ImporterType::XYZDP;
else if (arg == "-volume")
Expand Down
2 changes: 2 additions & 0 deletions tsd/src/tsd/io/importers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ void import_TRK(Scene &scene, const char *filename, LayerNodeRef location = {});
void import_USD(Scene &scene, const char *filename, LayerNodeRef location = {});
void import_USD2(Scene &scene, const char *filename, LayerNodeRef location = {});
void import_VTP(Scene &scene, const char *filepath, LayerNodeRef location = {});
void import_VTU(Scene &scene, const char *filepath, LayerNodeRef location);
void import_XYZDP(Scene &scene, const char *filename, LayerNodeRef location = {});

// Spatial field importers //
Expand Down Expand Up @@ -93,6 +94,7 @@ enum class ImporterType
USD,
USD2,
VTP,
VTU,
XYZDP,
VOLUME,
TSD,
Expand Down
Loading