diff options
| author | Bryan Galdrikian <[email protected]> | 2017-02-24 09:32:20 -0800 |
|---|---|---|
| committer | Bryan Galdrikian <[email protected]> | 2017-02-24 09:32:20 -0800 |
| commit | e1bf674c16e3c8472b29574159c789cd3f0c64e0 (patch) | |
| tree | 9f0cfce09c71a2c27ff19589fcad6cd83504477c /docs/_source/ext_import.txt | |
| parent | first commit (diff) | |
| download | blast-e1bf674c16e3c8472b29574159c789cd3f0c64e0.tar.xz blast-e1bf674c16e3c8472b29574159c789cd3f0c64e0.zip | |
Updating to [email protected] and [email protected] with a new directory structure.
NvBlast folder is gone, files have been moved to top level directory. README is changed to reflect this.
Diffstat (limited to 'docs/_source/ext_import.txt')
| -rw-r--r-- | docs/_source/ext_import.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/_source/ext_import.txt b/docs/_source/ext_import.txt new file mode 100644 index 0000000..40eafcc --- /dev/null +++ b/docs/_source/ext_import.txt @@ -0,0 +1,22 @@ +/*! \page pageextapeximport Apex Import (NvBlastExtApexImport) + +Blast extensions provide Nv::Blast::ApexImporter::ApexImportTool, which can be used for converting APEX Destructible assets into Blast assets. + +This tool supports two bond generation modes and can be configured by providing: +\code +struct ApexImporterConfig +{ + enum InterfaceSearchMode { EXACT, FORCED, MODE_COUNT }; + InterfaceSearchMode infSearchMode; +} +\endcode + +1) EXACT - Importer tries to find triangles from two chunks which lay in common surface. If such triangles are found, their intersections are considered as the interface. + +2) FORCED - Bond creation is forced no matter how far chunks from each other. Interface parameters are approximated. + +Nv::Blast::ApexImporter::ApexImportTool can be itinialized by providing ApexSDK and ModuleDestructible, or they can be created internally. + +If ApexSDK and ModuleDestructible were provided, they are not freed when Nv::Blast::ApexImporter::~ApexImportTool() is called. +<br> +*/ |