1

I've incorporated IronPython into my XNA game on Windows, but, of course, that won't work on the compact framework since the DLR stuff isn't available.

Are there any scripting object implementations available that will work with the compact framework? It's really convenient to be able to tweak the system real-time without having to recompile.

3Dave
  • 28,657
  • 18
  • 88
  • 151

1 Answers1

1

Most things in IronRuby will work on the compact framework (it runs on Windows Phone today). You may need to deploy the DLR yourself but because it's just an additional library it is possible to run it. IronPython could be made to work but it'll require some work to avoid doing code generation where it does today which is not possible on the compact framework.

Dino Viehland
  • 6,478
  • 20
  • 25
  • 1
    IIRC DLR uses a lot of reflection stuff which is unavailable on .NETCF on the 360. IronRuby works on WinPhone because its needs are supported by the framework there, but it'll have the same problem as IronPython on the 360. – Chris Charabaruk Dec 31 '10 at 13:36