How to make 3D models for Silverlight 5?

I am a .NET web developer, but I don't know anything about 3D yet. In Silverlight 5 3D API you draw material on the screen by code, not XAML for 3D objects / models, I’m wondering how 3D developers can create such cool complex animated 3D games and scenes as the SL5 3D demo version of β€œWindows Cafe” "? what software is used to draw the model and create such lighting effects .. etc.? How to import models? how to revive them? I just want to know the headings / basics.

Now everything is clear in Silverlight 2D, we draw everything with Expression Blend / Design or import graphics from Adobe Illustrator as XAML, then we use the built-in code animations and / or SL to animate the XAML elements. What are the equivalents for creating 3D with Silverlight 5?

Thanks.

+4
source share
2 answers

Most 3D modeling applications support a huge number of export formats. XNA uses the .X format, which is supported by most modeling tools.

Ask to see this tutorial

+2
source

to import .OBJ from Silverlight read this article: http://silverlight.bayprince.com/tutorials.php?tutorial=11

in part 2 of this article, they also show how to load textures: http://silverlight.bayprince.com/tutorials.php?tutorial=13

in the left sidebar, they seem to have more articles on Silverlight 3D that might be interesting

0
source

All Articles