Adjust prints
parent
c74f266a43
commit
c6c93b08a3
|
@ -1,2 +1,3 @@
|
|||
def getFontPath(weightStr):
|
||||
def getFontPath(weightStr="weightStr"):
|
||||
if weightStr == "Regular": return "KawaiiMonoRegular.sfd"
|
||||
return "KawaiiMonoRegular.sfd"
|
||||
|
|
|
@ -98,4 +98,4 @@ def build(target,deselectOriginalGlyphs,NerdFontsAdjust=True,baseSize=550,weight
|
|||
if NerdFontsAdjust:
|
||||
print(" Adjusting size . . .",end="",flush=True)
|
||||
postScript(target,deselectOriginalGlyphs,baseSize)
|
||||
print(" [OK]")
|
||||
print(" [OK]")
|
||||
|
|
|
@ -9,7 +9,7 @@ from . import KawaiiMono as KawaiiMonoLoader
|
|||
|
||||
deselectFlags = ("less","unicode")
|
||||
|
||||
def build(weightStr="Regular",config=None):
|
||||
def build(config=None,weightStr="Regular"):
|
||||
# 메인 폰트 불러오기 / 에셋 다운로드
|
||||
kawaii = fontforge.open(
|
||||
KawaiiMonoLoader.getFontPath(weightStr=weightStr))
|
||||
|
|
Loading…
Reference in New Issue