Tweening not working properly, help?
Asked by
5 years ago Edited 5 years ago
I am trying to tween the lighting's ColorShift_Top seamlessly while also making time go by. I made this script:
02 | [ "Morning_Glow" ] = Color 3. fromRGB( 255 , 140 , 35 ), |
03 | [ "Noon_Glow" ] = Color 3. fromRGB( 255 , 255 , 125 ), |
04 | [ "Evening_Glow" ] = Color 3. fromRGB( 175 , 45 , 5 ), |
05 | [ "Night_Glow" ] = Color 3. fromRGB( 15 , 20 , 75 ) |
08 | local function GetGlow() |
09 | local CT = Lighting.ClockTime |
11 | if CT > 6 and CT < = 8 then |
12 | return Glows.Morning_Glow |
13 | elseif CT > 8 and CT < = 16 then |
14 | return Glows.Noon_Glow |
15 | elseif CT > 16 and CT < = 18 then |
16 | return Glows.Evening_Glow |
18 | return (Glows.Night_Glow) |
23 | Lighting.ClockTime = Lighting.ClockTime + increment |
25 | local Ambient = Lighting.ColorShift_Top |
26 | local NewAmbient = GetGlow() |
28 | if Ambient = = NewAmbient then |
29 | Lighting.ColorShift_Top = NewAmbient |
31 | local newTween = TS:Create(Lighting, TI, { ColorShift_Top = NewAmbient } ) |
(Some parts not included.)
But when it tweens, it is vey slow. I know this is due to tweens overlapping, but how can I fix this? I need the tween to play in the "Background," with the rest of the script still running.
EDIT: The tweeninfo is:
1 | TweenInfo.new( 1.5 , Enum.EasingStyle.Quad, Enum.EasingDirection.In) |