Background for Fallout 4
Member of the MatSwap script
MatSwap:RemapData[]functionGetRemapData()Native

Description

Wiki Description

Gets an array of the RemapData for this material swap.


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.")
EndIf

Auto-Generated Example

MatSwap:RemapData[] returnedValue = myMatSwap__toCallFunctionOn.GetRemapData()

Related Pages


Additional References

View this function’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.