Sha256: d7ccd61984f448d25b3ca22dfdb745a51d34702ae18d17e0ced28233ad833581

Contents?: true

Size: 733 Bytes

Versions: 7

Compression:

Stored size: 733 Bytes

Contents

# frozen_string_literal: true

# t = text({ int8: { english: :hello, french: :salut, deutch: :halo } })

# wait 1 do
#   t.language(:french)
#   wait 1 do
#     t.language(:english)
#     # data is updated to the latest choice
#     puts t.data
#     wait 1 do
#       t.data(:hi)
#     end
#   end
# end

Universe.translation[:hello] = { english: :hello, french: :salut, deutch: :halo }

b = box({ left: 155,
          drag: true,
          id: :boxy })


b.text({ data: :hello, id: :t1, position: :absolute, color: :black })
t2 = b.text({ data: :hello, id: :t2, left: 9, top: 33, position: :absolute })



Universe.language = :french
wait 2 do
  t2.refresh
  Universe.language = :deutch
  wait 2 do
  grab(:boxy).refresh
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
atome-0.5.7.6.5 vendor/assets/src/medias/utils/examples/particles/int8/example.rb
atome-0.5.7.6.0 vendor/assets/application/examples/int8.rb
atome-0.5.7.5.9 vendor/assets/application/examples/int8.rb
atome-0.5.7.5.4 vendor/assets/application/examples/int8.rb
atome-0.5.7.5.3 vendor/assets/application/examples/int8.rb
atome-0.5.7.5.1 vendor/assets/application/examples/int8.rb
atome-0.5.7.4.8 vendor/assets/application/examples/int8.rb