[Bug] CapsuleCollisionShape Axis doesn't match the wireframe or collision

Ok, lets start with this. Please follow instructions when asked to clarify something, especially when its an engine leader.

CapsuleCollisionShape(1.5f, 18f, 1);

https://imgur.com/a/oHz0OD8

CapsuleCollisionShape(1.5f, 18f, 0);

Imgur

I am unclear exactly what your talking about but I think it may be that the capsule does not fall to the ground when changing the orientation from Y (1) to X (0)?

What has happened is I made an edit to the wiki about gravity and BetterCharacterControl, where gravity must be set AFTER adding the object to the physcicsspace, and I assumed it meant the same for CharacterControl.

Evidently it doesn’t. With CharacterControl, gravity works if you set it before or after adding to the physics space BUT gravity must be set BEFORE moving the physics location.

I fixed the example like so.

You can set the gravity before or after adding the object to the physics space, but gravity must be set BEFORE moving the physics space itself.

Anyone see a problem with this statement?