2021-08-15 16:34:36 +02:00
|
|
|
local StepParent = require "scenes.battlesystem.choregraphy.step.parent"
|
2020-07-25 17:03:37 +02:00
|
|
|
local WaitActorFinishedStep = StepParent:extend()
|
|
|
|
|
|
|
|
function WaitActorFinishedStep:new(controller, args)
|
|
|
|
WaitActorFinishedStep.super.new(self, controller, args)
|
|
|
|
end
|
|
|
|
|
|
|
|
function WaitActorFinishedStep:start()
|
|
|
|
self.choregraphy.actor:blockChoregraphy(true, self, self.arguments.waitFor)
|
|
|
|
end
|
|
|
|
|
|
|
|
function WaitActorFinishedStep:update(dt)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function WaitActorFinishedStep:getSignal(signal)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return WaitActorFinishedStep;
|