change(ui) - player speed include 0.5

This commit is contained in:
Shekar Siri 2023-02-27 17:12:58 +01:00 committed by Taha Yassine Kraiem
parent 2a5e478e64
commit 63594548ae

View file

@ -13,7 +13,7 @@ const SKIP_TO_ISSUE_STORAGE_KEY = "__$session-skipToIssue$__"
const AUTOPLAY_STORAGE_KEY = "__$player-autoplay$__"
const SHOW_EVENTS_STORAGE_KEY = "__$player-show-events$__"
const storedSpeed: number = typedLocalStorage.number(SPEED_STORAGE_KEY)
const initialSpeed = [1, 2, 4, 8, 16].includes(storedSpeed) ? storedSpeed : 1
const initialSpeed = [0.5, 1, 2, 4, 8, 16].includes(storedSpeed) ? storedSpeed : 0.5
const initialSkip = typedLocalStorage.boolean(SKIP_STORAGE_KEY)
const initialSkipToIssue = typedLocalStorage.boolean(SKIP_TO_ISSUE_STORAGE_KEY)
const initialAutoplay = typedLocalStorage.boolean(AUTOPLAY_STORAGE_KEY)
@ -91,7 +91,7 @@ export default class Player extends Animator {
toggleSpeed() {
const { speed } = this.pState.get()
this.updateSpeed(speed < HIGHEST_SPEED ? speed * 2 : 1)
this.updateSpeed(speed < HIGHEST_SPEED ? speed * 2 : 0.5)
}
speedUp() {