From 8c02f419899cbfa1737e38b6a193a6bf244dab2a Mon Sep 17 00:00:00 2001 From: LeXXik Date: Wed, 2 Oct 2024 14:15:17 +0300 Subject: [PATCH] update docs --- src/physics/jolt/front/shape/component.mjs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/physics/jolt/front/shape/component.mjs b/src/physics/jolt/front/shape/component.mjs index 5cf68df..793deed 100644 --- a/src/physics/jolt/front/shape/component.mjs +++ b/src/physics/jolt/front/shape/component.mjs @@ -382,15 +382,27 @@ class ShapeComponent extends Component { /** * Changes the shape type. Following constants available: * ``` + * SHAPE_EMPTY + * ``` + * ``` + * SHAPE_PLANE + * ``` + * ``` * SHAPE_BOX * ``` * ``` * SHAPE_CAPSULE * ``` * ``` + * SHAPE_TAPERED_CAPSULE + * ``` + * ``` * SHAPE_CYLINDER * ``` * ``` + * SHAPE_TAPERED_CYLINDER + * ``` + * ``` * SHAPE_SPHERE * ``` * ```