- fast rendering with z-buffer and shaders
- PBR rendering (albedo, normal, roughness, metallic, ao, emission)
- Phong shading (color, normal, glossiness, specular, ao, emission)
- HDR with bloom
- screen space ambient occlusion (ssao)
- cubemap reflections
- proper blurred reflections on rough surfaces
- particle batches
- modular and extendable shaders
- dynamic clouds, sun, moon, stars and rainbows
- eye adaption effect
- cascade shadow mapping
- cubemap shadow mapping
- smooth shadows
- distance fog
- wind animation (leaves, grass, ...)
- supports .obj, .mtl, .dae and .vox
- threaded texture loading with automatic thumbnail generation
- threaded object loading using 3DreamEngine specific object files (converter included)
- included optimized vec2, vec3, vec4, mat2, mat3 and mat4 library
Due to rapid changes to 3Dream I am working on a seperate branch ("beta"). While this branch is faster and offers more and improved features, I am experimenting with it and may change how things work.
Undocumented features are subject to change. They will receive proper documentation once finished.
Documentation hosted on GitHub
--load 3DreamEngine
dream = require("3DreamEngine")
--optionally set settings
dream:setBloom(3)
--inits (applies settings)
dream:init()
--loads a object
yourObject = dream:loadObject("examples/monkey/object")
--creates a light
light = dream:newLight("point", 1, 2, 3, 1.0, 0.75, 0.2)
--add shadow
light:addShadow()
function love.draw()
--reset lighting to default sun
dream:resetLight()
--add light
dream:addLight(light)
--prepare for rendering
dream:prepare()
--rotate, draw and offset
yourObject:rotateY(love.timer.getDelta())
dream:draw(yourObject, 0, 0, -5)
--render
dream:present()
end
function love.update()
--update resource loader
dream:update()
end
We have examples in the examples folder. The provided main.lua contains a demo selection.
- Lamborghini model
- cc0textures.com
- texturehaven.com
- hdrihaven.com.com
- cgbookcase.com
- Stars and Moon by Solar Textures
Copyright 2020 Luke100000 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.