-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add saw behavior, east west, and level 3
- Loading branch information
1 parent
bb6319d
commit 8e22d36
Showing
4 changed files
with
43 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"p": { "x": 272, "y": 255 }, | ||
"r": 30, | ||
"s": [{ "x": 464, "y": 350, "b": "ew", "d": 100 }], | ||
"b": [{ "x": 260, "y": 220 }], | ||
"g": [ | ||
{ "x": 368, "y": 700 }, | ||
{ "x": 600, "y": 700 } | ||
], | ||
"h": [{ "x": 550, "y": 400 }] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export const BACK_FORTH = 0; | ||
export const UP_DOWN = 1; | ||
export const BACK_FORTH = 'ew'; | ||
export const UP_DOWN = 'ns'; |