2014-01-18 13:12:10 +00:00
|
|
|
class PlaybackOptions
|
|
|
|
|
|
|
|
include Virtus.model
|
|
|
|
|
|
|
|
attribute :speed, Float, default: 1.0
|
2014-01-18 13:19:23 +00:00
|
|
|
attribute :size, String, default: 'small'
|
2014-01-18 13:12:10 +00:00
|
|
|
attribute :autoplay, Boolean, default: false
|
2014-08-09 11:09:54 +00:00
|
|
|
attribute :loop, Boolean, default: false
|
2014-01-18 13:12:10 +00:00
|
|
|
attribute :benchmark, Boolean, default: false
|
2014-06-30 21:26:25 +00:00
|
|
|
attribute :theme, String, default: Theme::DEFAULT
|
2014-01-18 13:12:10 +00:00
|
|
|
|
|
|
|
end
|