From f94e6ca2f96d748cb0a4a6f6fc6fbd4947dbcdf9 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sat, 8 May 2021 19:10:30 +0200 Subject: [PATCH] fix: fix btn --- .../controllers/fighters/systems/choregraphy/qte/parent.lua | 2 +- .../fighters/systems/choregraphy/qte/prompts/button.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/qte/parent.lua b/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/qte/parent.lua index 0902874..b8f003d 100644 --- a/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/qte/parent.lua +++ b/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/qte/parent.lua @@ -1,6 +1,6 @@ local QteParent = Object:extend() -local TweenManager = require "game.modules.tweenmanager" +local TweenManager = require "birb.classes.time" local Prompts = require "scenes.battlesystem.controllers.fighters.systems.choregraphy.qte.prompts" function QteParent:new(choregraphySystem, arguments) diff --git a/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/qte/prompts/button.lua b/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/qte/prompts/button.lua index b8baf62..b2477b9 100644 --- a/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/qte/prompts/button.lua +++ b/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/qte/prompts/button.lua @@ -1,6 +1,6 @@ local Button = Object:extend() local ButtonCircle = Object:extend() -local TweenManager = require "game.modules.tweenmanager" +local TweenManager = require "birb.classes.time" local keys = {"A", "B", "C"} local BTN_SIZE = 21