Sha256: 4b811c73e8d0f67f1837e537a1dae1133f2653f7f146e68fc37c1d44a471e7d3
Contents?: true
Size: 609 Bytes
Versions: 12
Compression:
Stored size: 609 Bytes
Contents
# This is a tiny flip book (aka Para-Para Manga in Japanese) # original is http://www.paraman.net/play/preview/1258 # require 'green_shoes' Shoes.app title: 'potacho', width: 175, height: 160 do background tan @imgs = [] 1.upto 59 do |i| @imgs << image(File.join(DIR, "../samples/potato_chopping/1258_s#{"%03d" % i}.gif")).hide.move(10, 10) end @imgs.first.show def potacho @imgs[58].hide a = animate 12 do |i| @imgs[i].show @imgs[i-1].hide if i > 0 a.stop if i > 57 end end button(' start '){potacho}.move 10, 130 end
Version data entries
12 entries across 12 versions & 1 rubygems