UI 2차 추가 수정

This commit is contained in:
정영민
2025-03-28 09:50:00 +09:00
parent 85b4742485
commit 105c6c3ee7
10 changed files with 236 additions and 60 deletions

View File

@@ -141,14 +141,14 @@ namespace CHN
{
m.color = new Color(m.color.r,m.color.g,m.color.b,alpha);
}
if (alpha > 0.5f)
if (alpha > 0.7f)
{
alpha = 0.5f;
alpha = 0.7f;
coeff = -coeff;
}
else if (alpha < 0f)
else if (alpha < 0.3f)
{
alpha = 0f;
alpha = 0.3f;
coeff = -coeff;
}
else
@@ -160,10 +160,10 @@ namespace CHN
IEnumerator OneFlash()
{
float alpha = 0f;
float coeff = 0.05f;
float coeff = 0.2f;
if (flashCount == 0)
{
while (alpha < 0.5f)
while (alpha < 0.7f)
{
yield return new WaitForSeconds(0.05f);