diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-15 15:20:17 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-15 15:20:17 +0100 |
| commit | 6dcde32122263627e58000c7616553a5bd5d2cef (patch) | |
| tree | 8d6fb2fed3f0de241bc47102c0a7fc2837456368 /tools/timeline_editor | |
| parent | 8f520cea6c561fdb067a224b552875de0d7d7ef4 (diff) | |
docs(timeline-editor): clarify effect time units in property panel
Add "beats" to start/end time labels in effect properties panel for consistency with sequence panel.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'tools/timeline_editor')
| -rw-r--r-- | tools/timeline_editor/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/timeline_editor/index.html b/tools/timeline_editor/index.html index 14a7791..d1c759d 100644 --- a/tools/timeline_editor/index.html +++ b/tools/timeline_editor/index.html @@ -636,8 +636,8 @@ const samePriority = effect.priorityModifier === '='; dom.propertiesContent.innerHTML = ` <div class="property-group"><label>Effect Class</label><input type="text" id="propClassName" value="${effect.className}"></div> - <div class="property-group"><label>Start Time (relative to sequence)</label><input type="number" id="propStartTime" value="${effect.startTime}" step="0.1"></div> - <div class="property-group"><label>End Time (relative to sequence)</label><input type="number" id="propEndTime" value="${effect.endTime}" step="0.1"></div> + <div class="property-group"><label>Start Time (beats, relative to sequence)</label><input type="number" id="propStartTime" value="${effect.startTime}" step="0.1"></div> + <div class="property-group"><label>End Time (beats, relative to sequence)</label><input type="number" id="propEndTime" value="${effect.endTime}" step="0.1"></div> <div class="property-group"><label>Constructor Arguments</label><input type="text" id="propArgs" value="${effect.args || ''}"></div> <div class="property-group"><label>Stack Position (determines priority)</label> <div style="display: flex; gap: 5px; margin-bottom: 10px;"> |
