Skip to content

Commit

Permalink
fix: Support for both int and real for set_angle command
Browse files Browse the repository at this point in the history
  • Loading branch information
Balloonpopper authored and StraToN committed Oct 24, 2022
1 parent d6158b3 commit fd6142c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class_name SetAngleCommand
func configure() -> ESCCommandArgumentDescriptor:
return ESCCommandArgumentDescriptor.new(
2,
[TYPE_STRING, TYPE_INT, TYPE_REAL],
[TYPE_STRING, [TYPE_REAL, TYPE_INT], [TYPE_REAL, TYPE_INT]],
[null, null, 0.0]
)

Expand Down

0 comments on commit fd6142c

Please sign in to comment.