Search found 1 match
- Fri Apr 29, 2011 7:40 am
- Forum: Questions and Help
- Topic: XBOX performance, space ship interior/exterior gameplay
- Replies: 7
- Views: 8577
Re: XBOX performance, space ship interior/exterior gameplay
I scanned through game1.cs. As a thought, you may wish to track how long each step in your game loop is taking. something like DateTime StartTime = DateTime.Now; <do stuff> Debug.WriteLine("Stuff took {0}",(DateTime.Now-StartTime).TotalMilliseconds); sprinkled in your update and draw metho...