Skip to content

Commit addc9b3

Browse files
committed
change marker colour to match tag colour
1 parent d89a9ac commit addc9b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

robot/game_config/markers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def bounding_box_color(self) -> tuple:
6262
if m == None:
6363
return tuple(reversed((0, 0, 0))) # Nothing, undefined
6464
if m.target_type == TARGET_TYPE["T0"]:
65-
return tuple(reversed((255, 0, 0))) # Blue
65+
return tuple(reversed((0, 255, 0))) # Green
6666
elif m.target_type == TARGET_TYPE["T1"]:
6767
return tuple(reversed((0, 0, 255))) # Red
6868
else:

0 commit comments

Comments
 (0)