fix: hit circle not showing
This commit is contained in:
parent
e2615607d7
commit
4853c92930
3 changed files with 5 additions and 18 deletions
Binary file not shown.
|
@ -1,18 +0,0 @@
|
|||
from PIL import Image
|
||||
from PIL import ImageFont
|
||||
from PIL import ImageDraw
|
||||
|
||||
#
|
||||
# main
|
||||
#
|
||||
|
||||
font = ImageFont.truetype("src/fonts/NotoSans-Regular.ttf", 100)
|
||||
|
||||
# i: 0 ~ 9
|
||||
for i in range(10):
|
||||
image = Image.new("RGBA", (50, 100))
|
||||
draw = ImageDraw.Draw(image)
|
||||
|
||||
draw.text((-1, -20), f"{i}", fill="white", font=font)
|
||||
|
||||
image.save(f"dist/default-{i}@2x.png")
|
|
@ -24,3 +24,8 @@ Combo4: 74, 134, 255 // #4a86ff
|
|||
SliderBorder: 113, 102, 98 // #716662
|
||||
SliderTrackOverride: 20, 18, 17 // #141211
|
||||
SpinnerBackground: 100,100,100 // #646464
|
||||
|
||||
[Fonts]
|
||||
|
||||
HitCirclePrefix: default
|
||||
HitCircleOverlap: 160
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue