В XNA 4.0 с использованием подставки VS 2010 IDE ...
Следующая строка дает мне ошибку.
public EffectManager(ContentManager myContManager, GraphicsDevice myGFX)
{
defaultEffect = new BasicEffect(myGFX);
//defaultEffect.Parameters["TextureEnabled"].SetValue(true);
myContent = myContManager;
}
Однако, если я изменю это на:
public EffectManager(ContentManager myContManager, GraphicsDevice myGFX)
{
defaultEffect = new BasicEffect(myGFX);
defaultEffect.TextureEnabled = true;
myContent = myContManager;
}
Это работает! Почему я не могу установить его с помощью SetValue ??