[3d] add recording video support (#3749)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Terry Jia
2025-05-03 23:00:07 -04:00
committed by GitHub
parent 8ae36e2c8d
commit 77ac4a415c
15 changed files with 542 additions and 9 deletions

View File

@@ -89,6 +89,16 @@ export class ViewHelperManager implements ViewHelperManagerInterface {
handleResize(): void {}
visibleViewHelper(visible: boolean) {
if (visible) {
this.viewHelper.visible = true
this.viewHelperContainer.style.display = 'block'
} else {
this.viewHelper.visible = false
this.viewHelperContainer.style.display = 'none'
}
}
recreateViewHelper(): void {
if (this.viewHelper) {
this.viewHelper.dispose()