コード例 #1
0
ファイル: GameScript.cs プロジェクト: archarry86/2dfighting
    public void AddPunchInfo(GameObject gameObject, PlayerHitInfo info)
    {
        var ifigther = gameObject.GetComponent <IFigther>();

        playerinfocount++;
        if (playerinfocount == MAX_INFOPLAYER_COUNT)
        {
        }
    }
コード例 #2
0
 public void PlayerGotHit(PlayerHitInfo info)
 {
     hitMoments.Add(info);
 }
コード例 #3
0
 public void PlayerGotHit(PlayerHitInfo info)
 {
     stats.PlayerGotHit(info);
 }