Exemple #1
0
 public static void Postfix(LanceMechEquipmentList __instance)
 {
     try
     {
         CustomWidgetsFixLanceMechEquipment.SetLoadout_LabelOverrides(__instance);
     }
     catch (Exception e)
     {
         Control.Logger.Error.Log(e);
     }
 }
 public static void Postfix(LocalizableText ___centerTorsoLabel)
 {
     try
     {
         CustomWidgetsFixLanceMechEquipment.Awake(___centerTorsoLabel);
     }
     catch (Exception e)
     {
         Control.Logger.Error.Log(e);
     }
 }
Exemple #3
0
 public static void Postfix(
     LocalizableText ___centerTorsoLabel,
     MechDef ___activeMech,
     DataManager ___dataManager,
     List <GameObject> ___allComponents
     )
 {
     try
     {
         CustomWidgetsFixLanceMechEquipment.SetLoadout(
             ___centerTorsoLabel,
             ___activeMech,
             ___dataManager,
             ___allComponents
             );
     }
     catch (Exception e)
     {
         Control.Logger.Error.Log(e);
     }
 }