drawBillboard function

void drawBillboard(
  1. Camera camera,
  2. Texture2D texture,
  3. Vector3 position,
  4. double size,
  5. Color tint,
)

Draw a billboard texture.

Implementation

void drawBillboard(
  Camera camera,
  Texture2D texture,
  Vector3 position,
  double size,
  Color tint,
) {
  return library.DrawBillboard(
    camera.ref,
    texture.ref,
    position.ref,
    size,
    tint.ref,
  );
}