|
I looked into the Max 2009 issues, you have to set the 2D samplers to wrap.
For every texture sampler, add this:
AddressU = WRAP;
AddressV = WRAP;
Seems like this setting isn't the default anymore in 2009, so you have to make sure to set it manually.
|