Javascript (or similar) gaming scripts for C# XNA

前端 未结 3 505
说谎
说谎 2021-02-08 10:51

Lately I am preparing myself to develop yet another game in XNA C#.

The last time I worked on a game in XNA C#, I ran into this problem of having to add maps and custom

相关标签:
3条回答
  • 2021-02-08 11:09

    Would IronPython be more appropriate? That should work well on "full" framework - but it looks like it might not work (yet) on xbox 360 (which uses compact framework).

    For an IronPython / xna example, see here.

    0 讨论(0)
  • 2021-02-08 11:21

    You can try Jint which is a open source Javascript interpreter written in C#

    0 讨论(0)
  • 2021-02-08 11:28

    The compact framework doesn't include System.Reflection.Emit, which means you can't use IronPython. I recommend LUA, and you can find an XNA interpreter implementation with open source here

    0 讨论(0)
提交回复
热议问题