Click or drag to resize

MeshesTranslateMesh Method

Translates meshes's verticies.

Namespace:  KSPDev.ModelUtils
Assembly:  KSPDev_Utils.1.0 (in KSPDev_Utils.1.0.dll) Version: 1.0 for KSP v1.6+
Syntax
C#
public static void TranslateMesh(
	GameObject model,
	Nullable<Vector3> offset = null,
	Nullable<Quaternion> rotation = null,
	Nullable<Vector3> scale = null
)
Request Example View Source

Parameters

model
Type: UnityEngineGameObject
Model object to change the mesh in.
offset (Optional)
Type: SystemNullableVector3
Offset for the verticies. If not specified then the offset is zero. The offset is added after the scale and the rotation have been applied.
rotation (Optional)
Type: SystemNullableQuaternion
Rotation for the verticies. If not set then no rotation is added.
scale (Optional)
Type: SystemNullableVector3
Scale for the vertex positions. If not specified then the scale is not affected.
Remarks
This is different from setting postion, rotation and scale to the transform. This method actually changes vetricies in the mesh. It's not performance effective, so avoid doing it frequiently.
See Also