lighttroupe/luz-next

View on GitHub
engine/plugins/project_effects/reload-code.luz.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ProjectEffectReloadCode < ProjectEffect
    title                "Reload Code"
    description "Reloads the source code off disk.  For developers."

    setting 'reload', :event, :summary => 'on %'

    def tick
        $application.reload_code! if reload.on_this_frame?
    end
end