何らかの理由で、コンポーネントで LoadContent メソッドが呼び出されません。たとえば、私が行う Game クラスがあります。
//Game.cs
protected override void LoadContent() {
editor = new Editor(...);
Components.Add(editor);
}
//Editor.cs
public class Editor : DrawableGameComponent{
Game game;
public Editor(Game game, ...):base(game){
this.game = game;
}
//THIS method never gets called!
protected override void LoadContent() {
background = game.Content.Load<Texture2D>("background");
base.LoadContent();
}
}
任意のヒント?
編集: Initialize と LoadContent の順序を覚えておくと、すべてうまくいきます!