Add UI for Markers with end seconds on scene player. (#5633)

Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
skier233
2025-02-18 01:10:15 -05:00
committed by GitHub
parent c8032f04fa
commit 3ea49c6c2e
10 changed files with 469 additions and 76 deletions

View File

@@ -357,6 +357,12 @@ export const SettingsInterfacePanel: React.FC = PatchComponent(
checked={iface.showScrubber ?? undefined}
onChange={(v) => saveInterface({ showScrubber: v })}
/>
<BooleanSetting
id="show-range-markers"
headingID="config.ui.scene_player.options.show_range_markers"
checked={ui.showRangeMarkers ?? undefined}
onChange={(v) => saveUI({ showRangeMarkers: v })}
/>
<BooleanSetting
id="always-start-from-beginning"
headingID="config.ui.scene_player.options.always_start_from_beginning"