aboutsummaryrefslogtreecommitdiff
path: root/scene/3d/baked_lightmap.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix timer second not zero padded when < 10Poommetee Ketson2018-02-191-1/+1
| | | | Also RTR "Time Left:"
* Bind many more properties to scriptsBojidar Marinov2018-01-121-2/+2
| | | | | | | Notable potentially breaking changes: - PROPERTY_USAGE_NOEDITOR is now PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_NETWORK, without PROPERTY_USAGE_INTERNAL - Some properties were renamed, and sometimes even shadowed by new ones - New getter methods (some virtual) were added
* Fix registered light_data property type nameRuslan Mustakov2018-01-111-1/+1
|
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+30
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* -Removed OpenMP support, replaced by a custom class.Juan Linietsky2017-12-241-2/+2
| | | | -Disabled Opus, implementation is wrong.
* -Make capture dependent on a cell size, not subdivision.Juan Linietsky2017-12-211-34/+50
| | | | -Fixed a bug recently introduced when releasing mouse events and calling popups
* doc: Sync classref with current sourceRémi Verschelde2017-12-181-1/+1
|
* Added baked light support for gridmaps.Juan Linietsky2017-12-181-12/+58
|
* Limit the lightmapper subdivide to 1024Hein-Pieter van Braam2017-12-171-4/+2
| | | | | | Due to memory contraints in other places in Godot it is unlikely that anything higher than 1024 will actually work. When/if we improve memory management for vectors we can increase this limit again
* Fix gdnative generation for lightmapper.K. S. Ernest (iFire) Lee2017-12-161-0/+6
|
* BakedLightmap: Update gizmo when setting extents.Andreas Haas2017-12-151-0/+1
| | | | Fixes #14696.
* fix for compiling the new lightmapperMichele Valente2017-12-141-1/+1
| | | | also changed two calls that were ambiguous
* -Add lightmapperJuan Linietsky2017-12-141-0/+717
-Fixes to unwrapper (remove degenerates), makes Thekla not crash -Added optional cancel button in EditorProgress -Added function to force processing of events (needed for cancel button)