Implement translation

This commit is contained in:
Marco Pesenti Gritti
2006-07-24 11:01:25 +02:00
parent 1c35f8d92c
commit 1e3633baf7
6 changed files with 42 additions and 6 deletions
+2 -1
View File
@@ -33,6 +33,7 @@ pixbuf = gtk.gdk.pixbuf_new_from_file('background.png')
stage.add(PixbufActor(pixbuf))
icons_group = Group()
icons_group.set_position(100, 100)
i = 1
while i <= 5:
@@ -55,7 +56,7 @@ drawing_area.show()
window.show()
timeline = Timeline(stage, 300)
timeline = Timeline(stage, 200)
timeline.connect('next-frame', __next_frame_cb, icons_group)
timeline.connect('completed', __completed_cb, icons_group)
timeline.start()