AlignTransformsPlaceVessel Method |
Places the vessel at the new position and resets the momentum on it.
Namespace:
KSPDev.ModelUtils
Assembly:
KSPDev_Utils.1.1 (in KSPDev_Utils.1.1.dll) Version: 1.1 for KSP v1.6+
Syntaxpublic static void PlaceVessel(
Vessel movingVessel,
Vector3 newPosition,
Quaternion newRotation,
Vessel refVessel = null
)
Request Example
View SourceParameters
- movingVessel
- Type: (Default Namespace)Vessel
The vessel to place. - newPosition
- Type: UnityEngineVector3
The new position of the vessel. - newRotation
- Type: UnityEngineQuaternion
The new rotation of the vessel. - refVessel (Optional)
- Type: (Default Namespace)Vessel
The vessel to alignt the velocity with. If it's null, then the velocity on the moving
vessel will just be zeroed.
RemarksIf the vessel had any angular velocity, it will be reset to zero.
See Also