Notifications
Clear all

[Closed] UVWMap ParamBlock SDK

Ok, So I’ve been going through Paramblocks, and it was all going well till I tried a UVWMap. I know it has Paramblock settings premade into the SDK, but everytime I try, it comes back with no Paramblock or Paramblock2. Is there a special way of accessing this ??

2 Replies

looking at the source it’s an original Paramblock id = 1, but you can also include mapping.h from the mods project in the samples then
use


 MappingMod* mapmod = GetMappingInterface(mod);
 if(mapmod)
 {
	       switch(mapmod->GetMapType())
	  { .... etc

Sweet, I shall give it a go Thanks