3

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?

3Dave
  • 26,903
  • 17
  • 82
  • 145
bitbonk
  • 45,662
  • 32
  • 173
  • 270

2 Answers2

7

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
  • 782
  • 5
  • 10
2

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

MSeverin
  • 186
  • 3