Sha256: 54ce4a4526cf11e502b93793338b1504eae669623007fe8349d64c6a04aa5141
Contents?: true
Size: 1.47 KB
Versions: 6
Compression:
Stored size: 1.47 KB
Contents
class StageDefinition attr_accessor :curtain_up_block, :curtain_down_block, :renderer, :helpers_block, :required_injections, :source # Required objects that you need for your specific stage # The objects will be created for you. # # define_stage :main_menu do # requires :magic_thinger # end def requires(*injections_needed) @required_injections = injections_needed end # Define a block of code to run when your stage is and ready to play # # define_stage :main_menu do # curtain_up do # @info = load_some_info # end # end def curtain_up(&curtain_up_block) @curtain_up_block = curtain_up_block end # Define a block of code to run when your stage has been shutdown # # define_stage :main_menu do # curtain_down do # @info = load_some_info # end # end def curtain_down(&curtain_down_block) @curtain_down_block = curtain_down_block end # Replaces the default renderer with your own. # # define_stage :main_menu do # render_with :my_render # ... # end def render_with(render_class_name) @renderer = render_class_name end # Define any helper methods / include modules here # These will be available for curtain_up / update / draw to use. # # define_stage :main_menu do # helpers do # include MinMaxHelpers # def calculate_thinger # ... # end # end # end def helpers(&helpers_block) @helpers_block = helpers_block end end
Version data entries
6 entries across 6 versions & 1 rubygems