sonic-radiance/sonic-radiance.love/scenes/battlesystem/choregraphy/step/skipTo.lua

13 lines
308 B
Lua
Raw Normal View History

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