我尝试使用来自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.
我的模特有什么问题?
答案 0 :(得分:0)
检查您的techniqueName
变量是否不是null
。
我投注effect.Techniques[null]
会因Dictionary.Item的原因System.ArgumentNullException
而引发{{1}}。