Skip to content
This repository has been archived by the owner on Nov 17, 2024. It is now read-only.

Commit

Permalink
Assets // Add Paimon stickers.
Browse files Browse the repository at this point in the history
  • Loading branch information
ShikiSuen committed Oct 2, 2023
1 parent 6c629ce commit 6ae4535
Show file tree
Hide file tree
Showing 28 changed files with 123 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "UI_EmotionIcon1.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "UI_EmotionIcon2.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "UI_EmotionIcon3.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "UI_EmotionIcon4.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "UI_EmotionIcon5.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
12 changes: 6 additions & 6 deletions Features/Gacha/View/AccountGachaView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -344,18 +344,18 @@ private struct GachaStatisticSectionView: View {
}

extension GachaStatisticSectionView.Rank {
func image() -> Image {
func image(neighborGame: Bool = false) -> Image {
switch self {
case .one:
return Image("Pom-Pom_Sticker_21")
return neighborGame ? Image("UI_EmotionIcon5") : Image("Pom-Pom_Sticker_21")
case .two:
return Image("Pom-Pom_Sticker_32")
return neighborGame ? Image("UI_EmotionIcon4") : Image("Pom-Pom_Sticker_32")
case .three:
return Image("Pom-Pom_Sticker_18")
return neighborGame ? Image("UI_EmotionIcon6") : Image("Pom-Pom_Sticker_18")
case .four:
return Image("Pom-Pom_Sticker_24")
return neighborGame ? Image("UI_EmotionIcon2") : Image("Pom-Pom_Sticker_24")
case .five:
return Image("Pom-Pom_Sticker_30")
return neighborGame ? Image("UI_EmotionIcon1") : Image("Pom-Pom_Sticker_30")
}
}

Expand Down

0 comments on commit 6ae4535

Please sign in to comment.