칼날 베기

This commit is contained in:
Ino 2025-05-04 13:52:26 +09:00
parent 97915a8ced
commit eae12347e7
4 changed files with 78864 additions and 97 deletions

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -46,12 +46,15 @@ public class Skill_DeathBlade : ProjectileBase
IEnumerator Co_JoyStick(Actor hitter)
{
OptionInfo.Ins.Set_PCMove(hitter, false);
yield return null;
if (m_ProjecTileData.shooter.IsMainPC())
MyValue.m_RealCamera.MoveCam_TargetBack(m_ProjecTileData.shooter.Get_position());
yield return new WaitForSeconds(0.2f);
go_nextattack.SetActive(true);
go_nextattack.transform.position = hitter.Get_Center_position();
yield return new WaitForSeconds(0.3f);
OptionInfo.Ins.Set_PCMove(hitter, true);
yield return new WaitForSeconds(0.5f);
yield return new WaitForSeconds(1.5f);
Off(true);
}
}

View File

@ -141,6 +141,11 @@ public class RealCamera : MyCoroutine
Set_TargetShow(gowitch.transform);
}
}
public void MoveCam_TargetBack(Vector3 targetpos)
{
transform.position = targetpos;
rotateAround = target.eulerAngles.y - 45f;
}
// Use this for initialization
void Start()