XNA阴影映射 - 模型无效?

时间:2014-06-23 13:35:30

标签: xna

我尝试使用来自http://xbox.create.msdn.com/en-US/education/catalog/sample/shadow_mapping_1的阴影映射示例。 当我尝试加载我的模型时,有一个例外:

effect.CurrentTechnique = effect.Techniques[techniqueName];

在DrawModel方法中。

An unhandled exception of type 'System.ArgumentNullException' occurred in Microsoft.Xna.Framework.Graphics.dll
Additional information: This method does not accept null for this parameter.

我的模特有什么问题?

1 个答案:

答案 0 :(得分:0)

检查您的techniqueName变量是否不是null

我投注effect.Techniques[null]会因Dictionary.Item的原因System.ArgumentNullException而引发{{1}}。