Animation Storyboard Template
Visual and Timing Breakdown (Frames and Seconds)
Scene Duration:
00:00
Project Title
Scene: Scene 1.0 | Animator/Director: N/A
Frame Rate: 24 fps | Total Frames: 0
Generated by Animation Storyboard Template
Project Definition
Panel Editor
Define the visual and audio content for each panel. Frame counts are crucial for timing.
No panels defined. Add panels in the editor.
"; return; } asbData.panels.forEach((panel, index) => { const duration = framesToTime(panel.frames, fps); const totalFrames = parseInt(panel.frames) || 0; const panelDiv = document.createElement('div'); panelDiv.className = 'asb-panel'; panelDiv.innerHTML = `
PANEL: ${index + 1} (${panel.shotId || 'N/A'})
DUR: ${duration} | FRAMES: ${totalFrames}
VISUAL (Sketch or Image Placeholder)
ACTION & STAGING
${panel.action || '---'}
CAMERA: ${panel.camera || 'Static'}
AUDIO / DIALOGUE
`;
outputs.panelGrid.appendChild(panelDiv);
});
}
function renderPanelEditor() {
outputs.panelEditorContainer.innerHTML = "";
asbData.panels.forEach((panel, index) => {
const card = document.createElement('div');
card.className = 'asb-edit-panel';
card.innerHTML = `
${panel.audio || '---'}
