我正在尝试为我的游戏创建一个模块,我的想法是能够在我的所有游戏中使用它。
所以我的 lib 项目有自己的内容文件夹,一切都很好,但它与宿主项目的内容文件夹崩溃。
这是我的组件(它是它自己的项目,我参考链接到主机项目(手机应用程序)):
namespace FPSComponent
{
public class FPS : DrawableGameComponent
{
private SpriteBatch spriteBatch;
SpriteFont normal;
Texture2D headerBackground;
public FPS(Game game)
: base(game)
{
spriteBatch = new SpriteBatch(Game.GraphicsDevice);
string tempRootDirectory = Game.Content.RootDirectory;
Game.Content.RootDirectory = "FPSComponentContent";
headerBackground = Game.Content.Load<Texture2D>("header-background");
normal = Game.Content.Load<SpriteFont>("normal");
//Game.Content.RootDirectory = tempRootDirectory; <-- does not work
}
public override void Update(GameTime gameTime)
{
// TODO: Add your update logic here
base.Update(gameTime);
}
public override void Draw(GameTime gameTime)
{
//GraphicsDevice.Clear(Color.CornflowerBlue);
spriteBatch.Begin();
spriteBatch.Draw(headerBackground, Vector2.Zero, Color.White);
spriteBatch.DrawString(normal, "FPS COMPONENT", new Vector2(20, 20), Color.White);
spriteBatch.End();
base.Draw(gameTime);
}
}
}
我试图做的是创建一个独立的组件来导入我的项目,这主要是为了学习目的......而不是一个工作的 FPS 示例 atm :-)