本文介绍了XNA动态加载内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在运行时将本地文件(不包含在项目中)加载到我的模型中.
我正在尝试这种方式:
I''m trying to load a local file (not included into project) into my model during the runtime.
I was trying this way:
myModel = Content.Load<Model>("C:/MyModel.fbx");
这是行不通的.正确的方法是什么?
It does not work. What is the correct way?
推荐答案
这篇关于XNA动态加载内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!