(position: Vec3, width: number, height: number, depth: number, color: Color)
| 224 | } |
| 225 | |
| 226 | export function drawCubeWires(position: Vec3, width: number, height: number, depth: number, color: Color): void { |
| 227 | bloom_draw_cube_wires(position.x, position.y, position.z, width, height, depth, color.r, color.g, color.b, color.a); |
| 228 | } |
| 229 | |
| 230 | export function drawSphere(position: Vec3, radius: number, color: Color): void { |
| 231 | bloom_draw_sphere(position.x, position.y, position.z, radius, color.r, color.g, color.b, color.a); |
no test coverage detected