You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dialog/Fonts/chinese.fnt
+2-2
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@
3
3
<infoface="Noto Sans CJK SC Medium"size="64"bold="0"italic="0"charset=""unicode="1"stretchH="100"smooth="1"aa="4"padding="0,0,0,0"spacing="1,1"outline="0"/>
TextMenu.ItemNotInViewColorItem=newEnumerableSlider<UsingNotInViewColorModes>("Using NotInView Color Modes".ToDialogText(),TASHelperMenu.CreateUsingNotInViewColorOptions(),
229
+
TextMenu.ItemNotInViewColorItem=newEnumerableSliderExt<UsingNotInViewColorModes>("Using NotInView Color Modes".ToDialogText(),TASHelperMenu.CreateUsingNotInViewColorOptions(),
page.Add(newTextMenuExt.IntSlider("Current Spawn Point Opacity".ToDialogText(),1,9,TasHelperSettings.CurrentSpawnPointOpacity).Change((value)=>TasHelperSettings.CurrentSpawnPointOpacity=value));
21
-
page.Add(newTextMenuExt.IntSlider("Other Spawn Point Opacity".ToDialogText(),0,9,TasHelperSettings.OtherSpawnPointOpacity).Change((value)=>TasHelperSettings.OtherSpawnPointOpacity=value));
20
+
page.Add(newIntSliderExt("Current Spawn Point Opacity".ToDialogText(),1,9,TasHelperSettings.CurrentSpawnPointOpacity).Change((value)=>TasHelperSettings.CurrentSpawnPointOpacity=value));
21
+
page.Add(newIntSliderExt("Other Spawn Point Opacity".ToDialogText(),0,9,TasHelperSettings.OtherSpawnPointOpacity).Change((value)=>TasHelperSettings.OtherSpawnPointOpacity=value));
page.Add(newTextMenuExt.IntSlider("SpeedrunTimer Opacity when TAS Pauses".ToDialogText(),1,10,TasHelperSettings.SpeedrunTimerDisplayOpacity).Change(value =>TasHelperSettings.SpeedrunTimerDisplayOpacity=value));
76
+
page.Add(newIntSliderExt("SpeedrunTimer Opacity when TAS Pauses".ToDialogText(),1,10,TasHelperSettings.SpeedrunTimerDisplayOpacity).Change(value =>TasHelperSettings.SpeedrunTimerDisplayOpacity=value));
page.Add(PredictItem=newTextMenu.OnOff("Predictor Main Switch".ToDialogText(),TasHelperSettings.PredictFutureEnabled).Change((value)=>TasHelperSettings.PredictFutureEnabled=value));
page.AddDescriptionOnEnter(menu,fadeoutItem,"Only Apply To Hitbox".ToDialogText());
113
-
page.Add(newIntSlider("Predictor Line Width".ToDialogText(),0,20,TasHelperSettings.PredictorLineWidth).Change(value =>TasHelperSettings.PredictorLineWidth=value));
114
-
page.Add(newIntSlider("Predictor Point Size".ToDialogText(),0,20,TasHelperSettings.PredictorPointSize).Change(value =>TasHelperSettings.PredictorPointSize=value));
113
+
page.Add(newIntSliderExt("Predictor Line Width".ToDialogText(),0,20,TasHelperSettings.PredictorLineWidth).Change(value =>TasHelperSettings.PredictorLineWidth=value));
114
+
page.Add(newIntSliderExt("Predictor Point Size".ToDialogText(),0,20,TasHelperSettings.PredictorPointSize).Change(value =>TasHelperSettings.PredictorPointSize=value));
0 commit comments