-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d7e36d
commit 632b4da
Showing
5 changed files
with
417 additions
and
166 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
extends Node2D | ||
|
||
|
||
func get_code(): | ||
return "condition-true" | ||
|
||
func get_stmts(): | ||
return [] | ||
|
||
func is_condition(): | ||
return true | ||
|
||
func check(_robot): | ||
return true |
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 @@ | ||
extends Node2D | ||
|
||
|
||
func get_code(): | ||
return "rotate-right" | ||
|
||
func get_stmts(): | ||
return [] | ||
|
||
func is_condition(): | ||
return false |
Oops, something went wrong.