Kaynağa Gözat

Allow custom goal colours (#451)

Matt Barker 6 ay önce
ebeveyn
işleme
a6cfc0e125
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      minigrid/core/world_object.py

+ 2 - 2
minigrid/core/world_object.py

@@ -107,8 +107,8 @@ class WorldObj:
 
 
 class Goal(WorldObj):
-    def __init__(self):
-        super().__init__("goal", "green")
+    def __init__(self, color: str = "green"):
+        super().__init__("goal", color)
 
     def can_overlap(self):
         return True