MeshesCreatePrimitive Method |
Creates a primitive mesh and attaches it to the model.
Namespace:
KSPDev.ModelUtils
Assembly:
KSPDev_Utils.2.0 (in KSPDev_Utils.2.0.dll) Version: 2.0 for KSP v1.8+
Syntaxpublic static GameObject CreatePrimitive(
PrimitiveType type,
Vector3 meshScale,
Material material,
Transform parent
)
Request Example
View SourceParameters
- type
- Type: PrimitiveType
The type of the primitive. - meshScale
- Type: Vector3
The scale to bring all the mesh vertices to. The scale is applied on the mesh, i.e. it's
applied on the vertices, not the transform.
- material
- Type: Material
The material to use for the primitive. - parent
- Type: Transform
The parent transform to attach the primitive to.
Return Value
Type:
GameObjectThe game object of the new primitive.
Remarks
See Also