lighttroupe/luz-next

View on GitHub
engine/plugins/project_effects/stop-performer.luz.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ProjectEffectStopPerformer < ProjectEffect
    title                "Stop Performer"
    description "Quits fullscreen performance mode on a chosen event."

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

    def tick
        $application.finished! if event.now?
    end
end