diff --git a/src/GuitarScene.py b/src/GuitarScene.py index a72910c73..43c67809c 100644 --- a/src/GuitarScene.py +++ b/src/GuitarScene.py @@ -683,14 +683,6 @@ def __init__(self, engine, libraryName, songName): shaders.var["whammy"] = self.whammyEffect self.bigRockEndings = self.engine.config.get("game", "big_rock_endings") self.showFreestyleActive = self.engine.config.get("debug", "show_freestyle_active") - #stump: continuous star fillup - self.starFillupCenterX = self.engine.theme.starFillupCenterX - self.starFillupCenterY = self.engine.theme.starFillupCenterY - self.starFillupInRadius = self.engine.theme.starFillupInRadius - self.starFillupOutRadius = self.engine.theme.starFillupOutRadius - self.starFillupColor = self.engine.theme.colorToHex(self.engine.theme.starFillupColor) - self.starContinuousAvailable = self.engine.config.get("performance", "star_continuous_fillup") and \ - None not in (self.starFillupCenterX, self.starFillupCenterY, self.starFillupInRadius, self.starFillupOutRadius, self.starFillupColor) self.showBpm = self.engine.config.get("debug", "show_bpm") #MFH self.logLyricEvents = self.engine.config.get("log", "log_lyric_events")