Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No longer track partially commited element references #206

Merged
merged 10 commits into from
Oct 1, 2024
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "no longer track partially commited element references",
"packageName": "@itwin/imodel-transformer",
"email": "36619139+ViliusRuskys@users.noreply.github.com",
"dependentChangeType": "patch"
}
4 changes: 3 additions & 1 deletion packages/transformer/src/IModelExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ export abstract class IModelExportHandler {
return true;
}

/** Called when element is skipped instead of exported. */
/** Called when element is skipped instead of exported.
* @note When an element is skipped, exporter will not export any of its child elements. Because of this, [[onSkipElement]] will not be invoked for any children of a "skipped" element.
*/
public onSkipElement(_elementId: Id64String): void {}
nick4598 marked this conversation as resolved.
Show resolved Hide resolved

/** Called when an element should be exported.
Expand Down
Loading
Loading