sonic-bluestreak/sonic-bluestreak.love/game/events/event/playSFX.lua

17 lines
398 B
Lua
Raw Normal View History

local StepParent = require "game.events.event.parent"
local SimpleMessageStep = StepParent:extend()
function SimpleMessageStep:new(controller, args)
SimpleMessageStep.super.new(self, controller, args)
end
function SimpleMessageStep:start()
self.events.scene.assets.sfx[self.arguments.sfx]:play()
end
function SimpleMessageStep:update(dt)
self:finish()
end
return SimpleMessageStep;