If I have the entity as a variable how can I get the bounding box coordinates in realworld by code?
using Unity.Mathematics;
using Unity.Rendering;
AABB aabb = entityManager.GetComponentData<WorldRenderBounds>( entity ).Value;
float3 center = aabb.Center;
float3 size = aabb.Extents * 2f;