- Found in:
- F4SE
Caveats
Examples
;Get the material swaps remapping data.
MatSwap:RemapData[] remapping = MyMaterialSwap.GetRemapData()
Debug.Trace(remapping){For each material remapping data}
MatSwap:RemapData[] remapping = MyMaterialSwap.GetRemapData()
If (remapping)
int index = 0
While (index < remapping.Length)
Debug.Trace("Remapping '" + remapping[index] + "' at index " + index)
index += 1
EndWhile
Else
Debug.Trace("The material swap remapping data is empty or none.")
EndIfAuto-Generated Example
MatSwap:RemapData[] returnedValue = myMatSwap__toCallFunctionOn.GetRemapData()Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
