Files
itgmania212121/Themes/default/Graphics/ScreenEvaluation LifeDifficulty.lua
T

10 lines
304 B
Lua
Raw Normal View History

2017-08-08 01:07:34 -06:00
return LoadFont("_roboto condensed 24px") .. {
2011-03-17 01:47:30 -04:00
Text=GetLifeDifficulty();
AltText="";
BeginCommand=function(self)
self:settextf( Screen.String("LifeDifficulty"), GetLifeDifficulty() );
2017-08-08 01:07:34 -06:00
self:diffuse(color("#512232")):zoom(0.8);
self:diffusealpha(0):sleep(0.5):smooth(0.3):diffusealpha(1);
2011-03-17 01:47:30 -04:00
end
2017-08-08 01:07:34 -06:00
};