2021-08-15 16:34:36 +02:00
|
|
|
local StepParent = require "scenes.battlesystem.choregraphy.step.parent"
|
2021-07-17 22:59:12 +02:00
|
|
|
local SkipToStep = StepParent:extend()
|
|
|
|
|
|
|
|
function SkipToStep:new(system, args)
|
|
|
|
SkipToStep.super.new(self, system, args)
|
|
|
|
end
|
|
|
|
|
|
|
|
function SkipToStep:start()
|
|
|
|
self.choregraphy:skipToStepByTag(self.arguments.skipTo)
|
|
|
|
end
|
|
|
|
|
|
|
|
return SkipToStep
|