📏 Adds step length slider

This commit is contained in:
Rune Harlyk
2024-08-03 18:13:31 +02:00
committed by Rune Harlyk
parent 8d2ca13b51
commit 4c05ba695b
5 changed files with 16 additions and 10 deletions
+1
View File
@@ -5,6 +5,7 @@ export interface ControllerInput {
right: vector;
height: number;
speed: number;
s1: number;
}
export type GithubRelease = {
+2 -1
View File
@@ -32,5 +32,6 @@ export const input: Writable<ControllerInput> = writable({
left: { x: 0, y: 0 },
right: { x: 0, y: 0 },
height: 50,
speed: 50
speed: 50,
s1: 50
});