You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(followTransform==null)Debug.LogError($"[{MODULENAME}] transformName was empty or does not exist.");
26
+
if(followTransform==null)Debug.LogError($"[{MODULENAME}] transformName '{transformName}' was empty or does not exist on part '{part.partInfo?.name}'");
27
27
}
28
+
29
+
if(followTransform==null&&part.partInfo!=null)
30
+
{
31
+
// this may be important if someone is swapping out versions of this module with B9PS
32
+
// Note this probably isn't correct for parts that also have modules that mess with this field (e.g. ModuleProceduralFairing)
0 commit comments