Flat light and back face cull worker mode
Construct 3 3DObject Plugin » Devlog
Add support for per face lighting and back face culling in worker mode. For larger models, this can offload a lot of calculations to another thread. Typical systems have 4-8 cores / threads to distribute work to.
Worker back face culling is a new property per object. Only works in worker mode (it would probably be a net loss if done on main thread.) This will potentially help some with GPU performance, when lighting is enabled.
Files
3DObject-2-49-1.c3addon 109 kB
Jun 08, 2023
Get Construct 3 3DObject Plugin
Download NowName your own price
Construct 3 3DObject Plugin
Construct 3 3DObject, loaded from 3D model files (gltf embedded format)
Status | Released |
Category | Assets |
Author | kindeyegames |
Tags | 3D, construct, construct-3 |
More posts
- fix (accessors) add support for sparse accessors in gltf9 hours ago
- Fix (node-disable) fix node disable without skinned node20 days ago
- fix (node-disable) regression26 days ago
- Fix (playable Ad)38 days ago
- fix (worker) correct animation blend for worker (translation)55 days ago
- fix (opacity)61 days ago
- add (sample) sample gpu-skin with phong light74 days ago
- fix (gpu-skinning) fix regression for worker mode74 days ago
- fix (light) fix for simple phong orientation75 days ago
- Add simple phong lighting support75 days ago
Comments
Log in with itch.io to leave a comment.
nice work. i found that updating lights or baking lights does not work with worker mode. and turning on worker mode for something like a low poly cube in your 3dflatlight example, the bottom or the top parts of the cube, some rows stay black, not a big deal tho. looking forward to finally add lights to my game.
Thanks for the feedback - I'll take a look at making update light / baking work in worker mode.
For the cube, if you also have Worker Back Face Cull enabled, that requires the vertices of the 3D Model to be ordered consistently and properly (CW / CCW). It may be the case that they are not organized that way in your model. You could try an import and export of blender to see if that helps fix the ordering.
the newest update fixed the black areas, thanks
great, you are welcome
Performance improve is always good