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
This code block appears as an example under the Part:TAG explanation in the docs. It has nothing to do with the :TAG suffix, and never mentions it.
It looks like it was meant to be an example for the :TARGETABLE suffix but might have gotten moved (or failed to be moved) as part of some kind of documentation re-ordering.
LIST PARTS FROM TARGET IN tParts.
PRINT "The target vessel has a".
PRINT "partcount of " + tParts:LENGTH.
SET totTargetable to 0.
FOR part in tParts {
IF part:TARGETABLE {
SET totTargetable TO totTargetable + 1.
}
}
PRINT "...and " + totTargetable.
PRINT " of them are targetable parts.".
The text was updated successfully, but these errors were encountered:
This code block appears as an example under the
Part:TAG
explanation in the docs. It has nothing to do with the:TAG
suffix, and never mentions it.It looks like it was meant to be an example for the
:TARGETABLE
suffix but might have gotten moved (or failed to be moved) as part of some kind of documentation re-ordering.The text was updated successfully, but these errors were encountered: