0
votes
4answers
55 views
c# xna questions
I want to start on a 2D game using C#, so I'm checking out my options.
XNA sounds good, but a few points are not very clear to me.
If I use XNA, can I just build my game and distribute my game as a …
1
vote
1answer
29 views
Collision Handling Between Circle and Line Segments
Hello,
I'm implementing a small game and am having trouble getting the physics working properly.
In this game, there is one ball (a circle which moves from frame to frame, and may change radius) and …
2
votes
0answers
29 views
Is there a good Semaphore for XNA on the XBox 360?
I'm looking for a fast and efficient implementation of a Semaphore for the .NET Compact Framework. There has been another Question here on SO (Semaphores in .NET compact framework) in which it was …
2
votes
5answers
120 views
Hiding objects that obscure the player in a 3D scene
I'm designing a 3D game with a camera not entirely unlike that in The Sims and I want to prevent the player character from being hidden behind objects, including walls, pillars and other objects.
One …
4
votes
3answers
114 views
C# Scripting language
This is a somewhat odd question.
I want to provide a scripting language for modding games that I build for XNA. If I was deplying these games for the PC then I would just be able to use C# files, …
1
vote
1answer
37 views
Setting the form icon for an XNA window?
Is there any way of changing the icon for an XNA game form (i.e. the one that appears in the top left corner of the form, and on the taskbar)?
I currently have a multi-icon with a variety of sizes …
1
vote
1answer
90 views
Chess Logic in XNA
So I've created a 2D chess game board with all the pieces on it using the XNA library and all. However I don't know how to make the pieces move if I click them. This is what I have for the logic of …
6
votes
3answers
113 views
Javascript (or similar) gaming scripts for C# XNA
Lately I am preparing myself to develop yet another game in XNA C#.
The last time I worked on a game in XNA C#, I ran into this problem of having to add maps and customizable data into the game. …
0
votes
1answer
69 views
Farseer Physics XNA Geom ‘Tripping’
Hello, I have an issue similar to http://farseerphysics.codeplex.com/Thread/View.aspx?ThreadId=72364
I have a rectangle player geom, and many rectangle tile geoms lined up next to each other.
…
0
votes
1answer
20 views
copying a texture in xna into another texture
I am loading a Texture2D that contains multiple sprite textures. I would like to pull the individual textures out when I load the initial Texture to store into separate Texture2D objects, but can't …
1
vote
2answers
66 views
webcam calling in xna
hi
i am new in xna
i want to use my webcam and make webcam image as a background texture for 3D models
is there a function that calls webcam
thanks for suggestions
4
votes
6answers
178 views
Learning C# / XNA as a first language for indie games dev
Hi all,
I'm really wanting to get into game development (childhood dream!) and i think I'm now in a position to finally invest enough time into it. However i have a few questions and I'd really like …
0
votes
1answer
48 views
XNA Antialias question!
Hi!
I've got problems with XNA and antialiasing. I can activate it using
graphics.PreferMultiSampling = true;
graphics.ApplyChanges();
however - it's only 2x antialiasing. Even if …
0
votes
1answer
38 views
XNA .Fbx textures
Hello. I'm using the standard .fbx importer with custom shaders in XNA. The .fbx model is UV wrapped properly and is textured appropriately when I use BasicEffect. However when I use my custom effect …
3
votes
1answer
57 views
Take screen shot in XNA
How can I take a screen shot of the screen in XNA? Is it possible without System.Drawing.Graphics.CopyFromScreen or Win32API? If it's not possible, Is there any way to draw a System.Drawing.Bitmap to …
