aboutsummaryrefslogtreecommitdiff
path: root/behaviors/ColorChangerBehavior.py
diff options
context:
space:
mode:
Diffstat (limited to 'behaviors/ColorChangerBehavior.py')
-rw-r--r--behaviors/ColorChangerBehavior.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/behaviors/ColorChangerBehavior.py b/behaviors/ColorChangerBehavior.py
index a3b1739..e1827eb 100644
--- a/behaviors/ColorChangerBehavior.py
+++ b/behaviors/ColorChangerBehavior.py
@@ -1,5 +1,5 @@
from operationscore.Behavior import *
-import Util
+import util.ColorOps as color
import pdb
class ColorChangerBehavior(Behavior):
def processResponse(self, sensorInputs, recursiveInputs):
@@ -7,9 +7,8 @@ class ColorChangerBehavior(Behavior):
for sensory in sensorInputs:
newDict = dict(sensory) #don't run into shallow copy issues
if self['ColorList'] != None:
- newDict['Color'] = Util.chooseRandomColor(self['ColorList']) #TODO: this doesn't work.
+ newDict['Color'] = color.chooseRandomColor(self['ColorList']) #TODO: this doesn't work.
else:
- newDict['Color'] = Util.randomColor()
-#newDict['Color'] = (255,0,0)
+ newDict['Color'] = color.randomColor()
ret.append(newDict)
return (ret, recursiveInputs)