SetRemapData - MatSwap

From the Fallout4 CreationKit Wiki
Revision as of 14:14, 11 February 2018 by imported>Qazaaq (added f4se member)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

F4SE member of: MatSwap Script
Requires F4SE version 0.6.5 or higher.

Sets the RemapData for this material swap.

Syntax

Function SetRemapData(RemapData[] data) Native

Parameters

  • data: An array of RemapData for this material swap.

Return Value

None

Examples

;Set the material swaps remapping data.
MatSwap:RemapData[] remapping = new MatSwap:RemapData[0]

MatSwap:RemapData remap = new MatSwap:RemapData
remap.Source = "TrafficLight.bgsm"
remap.Target = "TrafficLightRed.bgsm"
remapping.Add(remap)

MyMaterialSwap.SetRemapData(remapping)
Debug.Trace(MyMaterialSwap + " was set with the remapping " + remapping)

Notes

None

See Also