lovr.graphics.skybox
Render a skybox from a texture. Two common kinds of skybox textures are supported: A 2D equirectangular texture with a spherical coordinates can be used, or a "cubemap" texture created from 6 images.
lovr.graphics.skybox(texture)
Arguments
Name | Type | Description |
texture | Texture | The texture to use. |
Returns
Nothing
Example
function lovr.load()
skybox = lovr.graphics.newTexture({
left = 'left.png',
right = 'right.png',
top = 'up.png',
bottom = 'down.png',
back = 'back.png',
front = 'front.png'
})
-- or skybox = lovr.graphics.newTexture('equirectangular.png')
end
function lovr.draw()
lovr.graphics.skybox(skybox)
end
See also
lovr.graphics