Creates a box.
Namespace:
KSPDev.ModelUtils
Assembly:
KSPDev_Utils.1.2 (in KSPDev_Utils.1.2.dll) Version: 1.2 for KSP v1.6+
Syntaxpublic static GameObject CreateBox(
float width,
float height,
float length,
Material material,
Transform parent,
CollidersPrimitiveCollider colliderType = CollidersPrimitiveCollider.None
)
Request Example
View SourceParameters
- width
- Type: SystemSingle
X-axis of the box. - height
- Type: SystemSingle
Y-axis of the box. - length
- Type: SystemSingle
Z-axis of the box. - material
- Type: UnityEngineMaterial
Material for the primitive. - parent
- Type: UnityEngineTransform
Parent transfrom to atatch primitive to. - colliderType (Optional)
- Type: KSPDev.ModelUtilsCollidersPrimitiveCollider
Type of the collider to create on the primitive.
Return Value
Type:
GameObjectSphere game object.
See Also