Search Forums
-
For me the exclusion of Achievements and Leaderboards is the problem. That is the hook for me...no matter how terrible I do.
I'll second the need for the rating system to be up and running. This will definately help to distinguish good from bad.
-
If you just want to know which of the 8 directions you are going in this can be accomplished with the following:
float radians = (float)(Math.Atan2(thumbstick.Y, thumbstick.X));
float angle = radians * 180.0f / Math.PI;
int direction = ((int)((angle + 22.5f) / 45.0f)) & 7;
direction will give you an integer that tells you which ...
-
Vector2 thumbstick = gs.ThumbSticks.Left;
if (thumbstick.Length() > 1)
thumbstick.Normalize();
float length = thumbstick.Length();
length will tell you how far the thumbstick has moved away from its resting place. You can compare that with you thresholds.
-
That looks impressive. You must have put a lot of time and effort into it. I'll download and have a play and then give you some feedback.
-
http://msdn.microsoft.com/en-us/library/bb313965.aspx
-
The Nonphotorealistic sample uses an Edge detector for some of its effects.
http://creators.xna.com/en-GB/sample/nonrealisticrendering
Look at the PostprocessEffect.fx file.
-
I would allow the endurance mode to be switched on (either by completing the arcade mode) or by enabling a "cheat". That way you will be able to have better coverage and people will be able to test the enablement the way it is intended to work.
-
Remember when setting the processor affinity for the XBox 360 that hardware threads 0 and 2 is used by XNA and the framework.
Processor affinity settings:
0 or 1 = Core 0
2 or 3 - Core 1
4 or 5 - Core 2
I don't know why but I generally use hardware thread 3.
-
On occasions I have had to convert the sub project of a solution in turn before converting the solution. If you only have one project in your solution and it is saying "project unavailable" try right clicking on the project and going to "Load Project" sometimes that forces the project to load.
If you see the conversion ...
-
It is good to see that the cut off level has a high level of decency. Thanks for the information ZMan.