MeshesCreatePrimitive Method |
Creates a primitive mesh and attaches it to the model.
Namespace:
KSPDev.ModelUtils
Assembly:
KSPDev_Utils.1.0 (in KSPDev_Utils.1.0.dll) Version: 1.0 for KSP v1.6+
Syntaxpublic static GameObject CreatePrimitive(
PrimitiveType type,
Vector3 meshScale,
Material material,
Transform parent
)
Request Example
View SourceParameters
- type
- Type: UnityEnginePrimitiveType
The type of the primitive. - meshScale
- Type: UnityEngineVector3
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: UnityEngineMaterial
The material to use for the primitive. - parent
- Type: UnityEngineTransform
The parent transform to attach the primitive to.
Return Value
Type:
GameObjectThe game object of the new primitive.
Remarks
See Also