updateProxy method
Update the proxy of the shape.
Implementation
@override
void updateProxy() {
int p = 0;//AABB_PROX;
aabb.set(
position.x - p, position.x + p,
position.y - p, position.y + p,
position.z - p, position.z + p
);
if (proxy != null) proxy!.update();
}