views:

276

answers:

2

Now that the Unreal Development Kit for Unreal 3 engine is free I am thinking about utilizing it for an appication. Do you think it is possible to emebedd a Unreal 3 powered 3D window into a .NET (WPF or Windows Forms) and control parts of the gameobjects therein using c#? Is the engine plain c++? Or COM or is there a .NET wrapper or something?

+5  A: 

The UDK does not give you native access to code, sorry. Instead, it's script-level. As such, you would not be able to wrap it, etc. for use in .NET.

Unreal was not designed to be embedded in another application, it is a very large piece of software with special, very specific purposes. Even if you had a full development license, performing what you're asking would be a mountain of a task.

I would suggest looking into an XNA-based game engine for use with C#.

A.A. Grapsas
+1  A: 

I agree with A.A. Grapsas, I would also recommend looking at Unity.

MSeverin