存储 XNA 屏幕保护程序设置的好方法?
存储恰好使用 XNA 的屏幕保护程序的设置的最佳方式是什么?我正在考虑使用 .settings 文件,但我不确定如何从我的 XNA 代码中读取该文件...
What's the best way to store settings for a screensaver that happens to use XNA? i'm thinking of using a .settings file but i'm unsure how to read that from my XNA code...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定这就是您要找的,但是在 Creators Club 上有一个使用 XML 文件来存储粒子系统设置的示例:使用 XML 和内容管道创作粒子系统。如果您只想存储一些设置,这可能很适合您的问题。
另外,Nick Gravelyn 在 XNA 中发表了一篇关于存储设备管理的帖子。
不过,由于它是一个屏幕保护程序,因此您可以继续导入 System.IO 和 System.XML 命名空间。
I'm not sure this is what you're looking for, but over at Creators Club there's a sample that uses XML files to store settings for a particle system: Authoring Particle Systems Using XML and the Content Pipeline. If you simply want to store some settings this might be a good fit for your problem.
Otherwise Nick Gravelyn has a post on Storage Device Management in XNA.
Seeing as it's a screensaver though, you could just go ahead and import the System.IO and System.XML namespaces.