Skip to content

Commit fe9a89d

Browse files
committed
debugging
1 parent 95eb771 commit fe9a89d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

birdfish/lights.py

+1
Original file line numberDiff line numberDiff line change
@@ -916,6 +916,7 @@ def run_live(self):
916916
for n in self.networks:
917917
n.send_data()
918918
if self.frame == 20:
919+
print 'framerate: ', 1 / self.frame_delay, " Remainder: ", remainder
919920
self.frame = 0
920921

921922
def update(self):

birdfish/tween.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def jump_time(tween, value, b, c, d):
239239
for i in range(100):
240240
temp_value = tween(current_time, b, c, d)
241241
if val_max >= temp_value >= val_min:
242-
print "test value: %s, new time: %s" % (temp_value, current_time)
242+
# print "test value: %s, new time: %s" % (temp_value, current_time)
243243
return current_time
244244
current_time += time_slice
245245
print current_time

0 commit comments

Comments
 (0)