diff --git a/BoxColliderHelper.md b/BoxColliderHelper.md index a3c6f08..c1aad5e 100644 --- a/BoxColliderHelper.md +++ b/BoxColliderHelper.md @@ -1 +1,28 @@ -BoxColliderHelper \ No newline at end of file +

Component: GameObject

+

The component attached to the Box Collider. We use this as a simple way to retrieve information from the Box Collider in one call and send the information to the GPU.

+
Box%20Collider.png
+

Friction

+

Float: Min 0, Max 1, Default 0.8.

+ +

Gizmo Color

+

Color: Default Green.

+ +
+

API

+ +

Returns the following Struct:

+
+
public struct CollidableCubeStruct {
+    public Vector3 center;
+    public Vector3 rotation;
+    public Vector3 extent;
+    public float friction;
+}