SetRemapData - MatSwap

Revision as of 14:46, 11 February 2018 by imported>Qazaaq (removed incomplete flag)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

Sets the RemapData for this material swap.

SyntaxEdit

Function SetRemapData(RemapData[] data) Native

ParametersEdit

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

Return ValueEdit

None

ExamplesEdit

;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)

NotesEdit

None

See AlsoEdit