vendor/assets/application/examples/remove.rb in atome-0.5.6.4.0 vs vendor/assets/application/examples/remove.rb in atome-0.5.6.4.1

- old
+ new

@@ -12,35 +12,48 @@ # affect: [:the_circle], left: 9, top: 3, blur: 9, invert: false, red: 0, green: 0, blue: 0, alpha: 1 }) + + wait 1 do b.remove(:other_col) wait 1 do b.remove(:new_col) wait 1 do b.remove(:box_color) + wait 1 do b.apply(:last_col) wait 1 do b.apply(:last_col2) + b.remove(:s1) end end end end end b.touch(true) do + b.shadow({ + id: :s1, + # affect: [:the_circle], + left: 9, top: 3, blur: 9, + invert: false, + red: 0, green: 0, blue: 0, alpha: 1 + }) + puts "before => #{b.apply}" b.remove({all: :color}) puts "after => #{b.apply}" wait 1 do b.paint({id: :the_gradient_1,gradient: [:box_color, :circle_color]}) b.paint({id: :the_gradient,gradient: [:other_col, :new_col]}) wait 1 do b.remove(:the_gradient) wait 1 do b.remove(all: :shadow) + b.color(:cyan) end end end end