Created
August 2, 2010 14:53
-
-
Save davelyon/504755 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Define an image as below, you can call it anything, and you can have several -- e.g. ActiveRegion_AIA171, ActiveRegion_AIA090 | |
class ActiveRegionImage < Image | |
layer :id => 1, :visible => :true, :opacity => 100 | |
types ["mobile","web"] | |
scale 2.63 | |
end | |
class ActiveRegionMovie < Movie | |
layer :id => 1, :visible => :true, :opacity => 100 | |
types ["mobile","web"] | |
scale 2.63 | |
number_of_frames 200 | |
framerate 10 | |
backdate_start_time :hours => 6, :minutes => 0, :seconds => 0 | |
end_movie_after :hours => 18, :minutes => 0, :seconds => 0 | |
end | |
class ActiveRegion < HelioEvent | |
shortname "AR" | |
has_image ActiveRegionImage | |
has_movie ActiveRegionMovie | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment