コード例 #1
0
ファイル: Snake.cs プロジェクト: deivard/SNEKe
 public void KillSelf()
 {
     DeathScreenshot = new ISnakePart[BodyParts.Count];
     // Copy the final state of the snake before the death animation starts.
     BodyParts.CopyTo(DeathScreenshot, 0);
     IsDieing = true;
 }