I prefer C# as a language over Java, but I have been unable to find anything similar to the jMonkey Engine for Java. I want the feature of just being able to simply add blocks (called Box in jMonkey Engine) to my world instead of loading models.

Maybe I am just missing something, but I haven't found anything similar in any of the C# things (OGRE, Axiom, XNA).

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Although XNA doesn't have built in primitives you can use. The XNA shader series is an example which has a bunch of primitives you could reuse from it.

link|improve this answer
do you think that will be efficient enough to have thousands of blocks on the screen at the same time? – Alec Gorge Aug 21 '10 at 5:54
2  
Thousands of blocks still won't be using that many triangles. With each box using 12 triangles each. If you're really worried though you can use straight DirectX with C#. DirectX has primitives you can use directly. – David Young Aug 21 '10 at 6:14
ok sounds good! – Alec Gorge Aug 21 '10 at 16:22
feedback

You could look into Unity3D

link|improve this answer
feedback

there is C# cheap good engine, but loading process working too long.

http://www.neoaxisgroup.com/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.