🚀 Auto-deploy: melhoria no snap e medição AR em 31/05/2026 01:24:49
This commit is contained in:
@@ -75,7 +75,7 @@ export function startRecording() {
|
||||
const url = URL.createObjectURL(blob);
|
||||
const a = document.createElement('a');
|
||||
a.href = url;
|
||||
a.download = `tracksteel-AR-${new Date().toISOString().replace(/[:.]/g, '-')}.${ext}`;
|
||||
a.download = `steelxr-AR-${new Date().toISOString().replace(/[:.]/g, '-')}.${ext}`;
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
document.body.removeChild(a);
|
||||
@@ -123,7 +123,7 @@ export function captureScreenshot(): string | null {
|
||||
// Trigger download
|
||||
const a = document.createElement('a');
|
||||
a.href = dataUrl;
|
||||
a.download = `tracksteel-AR-${new Date().toISOString().replace(/[:.]/g, '-')}.png`;
|
||||
a.download = `steelxr-AR-${new Date().toISOString().replace(/[:.]/g, '-')}.png`;
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
document.body.removeChild(a);
|
||||
|
||||
Reference in New Issue
Block a user