diff --git a/Qwilight/Assets/Language.json b/Qwilight/Assets/Language.json index 2f21401..4206c0f 100644 --- a/Qwilight/Assets/Language.json +++ b/Qwilight/Assets/Language.json @@ -1607,10 +1607,6 @@ "ko-KR": "난이도 테이블 설정", "en-US": "Setting the difficulty table" }, - "LevelUpContents": { - "ko-KR": "레벨 업! 축하합니다.", - "en-US": "Level up! Congratulations!" - }, "LevyNoteFileContents": { "ko-KR": "게임 시작 ({0})", "en-US": "Game Start ({0})" diff --git a/Qwilight/Assets/UI/@Default/@Default.lua b/Qwilight/Assets/UI/@Default/@Default.lua index d1c3e65..4c4b43c 100644 --- a/Qwilight/Assets/UI/@Default/@Default.lua +++ b/Qwilight/Assets/UI/@Default/@Default.lua @@ -180,6 +180,10 @@ return TotalNotesQuitPosition1(0) - 5 end +function PaintProperty23Position0(e) + return DefaultLength(1.0) - e +end + function PaintProperty0Variety() if IsNoteFileModeBGA() then return 2 diff --git a/Qwilight/Assets/UI/@Default/@Default.yaml b/Qwilight/Assets/UI/@Default/@Default.yaml index 4b84743..44f5b30 100644 --- a/Qwilight/Assets/UI/@Default/@Default.yaml +++ b/Qwilight/Assets/UI/@Default/@Default.yaml @@ -211,12 +211,31 @@ # 선곡의 오토 플레이 텍스트 paintProperty17: 12, InputNoteCountViewPosition1(-20), 207.5, 20, 1, 0, 1, 0, null, 0 + + # 리절트의 트리거 백그라운드 이미지 + paintProperty20: PaintProperty23Position0(591), AutoModeQuitPosition1(-5), 591, 34, 1, 0, 0, 0, null, 1 # 선곡의 NPS 비주얼라이저 테두리 paintProperty21: 12, InputNoteCountViewPosition1(0), CommentViewLength(-34), 68, 1, 0, 0, 0, null, 0 # 선곡의 게임 모드 테두리 paintProperty22: AutoModePosition0(-5), PaintProperty22Position1(), 34, 442, 1, 0, 0, 0, null, 0 + + # 레벨 업 + paintProperty23: PaintProperty23Position0(108), AutoModeQuitPosition1(0), 103, 24, 1, 0, 0, 0, null, 1 + paintProperty24: PaintProperty23Position0(108), AutoModeQuitPosition1(0), 103, 24, 1, 0, 0, 100, null, 1 + + # 도전 과제 클리어 + paintProperty25: PaintProperty23Position0(353), AutoModeQuitPosition1(0), 235, 24, 1, 0, 0, 0, null, 1 + paintProperty26: PaintProperty23Position0(353), AutoModeQuitPosition1(0), 235, 24, 1, 0, 0, 101, null, 1 + + # 호칭 얻음 + paintProperty27: PaintProperty23Position0(455), AutoModeQuitPosition1(0), 92, 24, 1, 0, 0, 0, null, 1 + paintProperty28: PaintProperty23Position0(455), AutoModeQuitPosition1(0), 92, 24, 1, 0, 0, 106, null, 1 + + # 레이팅 Point 얻음 + paintProperty29: PaintProperty23Position0(586), AutoModeQuitPosition1(0), 121, 24, 1, 0, 0, 0, null, 1 + paintProperty30: PaintProperty23Position0(586), AutoModeQuitPosition1(0), 121, 24, 1, 0, 0, 107, null, 1 fadingProperty00: 50, 60, 0.5 fadingProperty01: 50, 60, 0.5 diff --git a/Qwilight/Assets/UI/@Default/@Default.zip b/Qwilight/Assets/UI/@Default/@Default.zip index 0b3ce57..e45c149 100644 --- a/Qwilight/Assets/UI/@Default/@Default.zip +++ b/Qwilight/Assets/UI/@Default/@Default.zip @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d908f1e7dffbecac51f1ee3b9481e9d51f29b8f4a7b6c4129c7baf376a11f9f0 -size 66986108 +oid sha256:149fdba0507308f257b4df1dff43c3e0f521cc238ea87b1e91e2eabfef6edcbb +size 68724102 diff --git a/Qwilight/Qwilight/System/LanguageSystem/LanguageSystem.g.cs b/Qwilight/Qwilight/System/LanguageSystem/LanguageSystem.g.cs index 9415958..7e74ab9 100644 --- a/Qwilight/Qwilight/System/LanguageSystem/LanguageSystem.g.cs +++ b/Qwilight/Qwilight/System/LanguageSystem/LanguageSystem.g.cs @@ -404,7 +404,6 @@ public string LevelInputContents { get; set; } public string LevelItem { get; set; } public string LevelSystemText { get; set; } - public string LevelUpContents { get; set; } public string LevyNoteFileContents { get; set; } public string LevyWwwLevel { get; set; } public string Library { get; set; } diff --git a/Qwilight/Qwilight/System/TwilightSystem.cs b/Qwilight/Qwilight/System/TwilightSystem.cs index 24c39b7..1e19b54 100644 --- a/Qwilight/Qwilight/System/TwilightSystem.cs +++ b/Qwilight/Qwilight/System/TwilightSystem.cs @@ -339,7 +339,7 @@ NotifySystem.Instance.Notify(NotifySystem.NotifyVariety.OK, NotifySystem.NotifyConfigure.Default, eventItemText); break; case Event.Types.EventID.LevelUp: - NotifySystem.Instance.Notify(NotifySystem.NotifyVariety.OK, NotifySystem.NotifyConfigure.Default, LanguageSystem.Instance.LevelUpContents, true, "Level Up"); + Utility.HandleUIAudio("Level Up"); BaseUI.Instance.HandleEvent(BaseUI.EventItem.LevelUp); break; case Event.Types.EventID.AbilityUp: