/** * Represents different billboard types. */ export declare enum SpriteBillboardType { /** * Sprite will be rotated towards the viewer on both the x-plane and y-plane. */ spherical = "spherical", /** * Sprite will be rotated towards the viewer on the y-plane. */ cylindrical = "cylindrical" }