| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2017-09-08 | ClassRef: fill in the blanks | Poommetee Ketson | 1 | -0/+141 | |
| 2017-09-07 | Ability to use a sky for reflection together with a background color. | Juan Linietsky | 4 | -4/+10 | |
| 2017-09-07 | Fixed orthogonal projection in all effects and post processes | Juan Linietsky | 7 | -892/+945 | |
| 2017-09-07 | Several fixes to directional shadows, closes #10926 | Juan Linietsky | 13 | -962/+1044 | |
| Added option to change directional light range mode, between optimized and stable. For Orthogonal, you might need to use optimized. | |||||
| 2017-09-07 | Restored auto snapping of controls to pixels, fixes #10847 and probably ↵ | Juan Linietsky | 5 | -0/+36 | |
| several more issues. Made it optional in the project settings but defaults to true. | |||||
| 2017-09-07 | Removed camera interpolation in orthogonal mode (I have no idea how to fix ↵ | Juan Linietsky | 1 | -1/+1 | |
| this due to how orthogonal works), closes #10718 | |||||
| 2017-09-06 | Mono vorbis support fixed, closes #10787 | Juan Linietsky | 1 | -0/+6 | |
| 2017-09-06 | Force redraw when HDR auto exposure is enable in all frames, fixes #10784 | Juan Linietsky | 1 | -0/+2 | |
| 2017-09-06 | Renamed playing property of audiostreams to play, to make it clearer. Fixes ↵ | Juan Linietsky | 3 | -7/+11 | |
| #10730 Also disabled the auto shut down of the property when stream ends, to make it easier to animate | |||||
| 2017-09-06 | -Fix folow surface in subsurface scattering, closes #10696 | Juan Linietsky | 1 | -56/+57 | |
| -Fixed filter kernels of subsurface scattering so quality settings make more sense | |||||
| 2017-09-07 | Fix EOF in wav file importer | Hein-Pieter van Braam | 1 | -4/+2 | |
| In #10973 I reset the state of the stream in get_pos() assuming that the ftell failing would cause proper error checking. This is not how this class was designed, however. This commit fixes the get_8() method to not return unitialized data on eof, and removes the wrong error resets added in #10973. This fixes #11022 | |||||
| 2017-09-06 | Check whether stuff is visible before baking it, closes #10525 | Juan Linietsky | 1 | -14/+17 | |
| 2017-09-06 | -Fixed changes to default input actions not working, closes #10502 | Juan Linietsky | 4 | -4/+19 | |
| -Added Array.duplicate() method, needed to fix above | |||||
| 2017-09-06 | Remove dead ButtonGroup code | Rémi Verschelde | 13 | -247/+0 | |
| 2017-09-06 | Fix frame selection in 2D particles, closes #10668 | Juan Linietsky | 1 | -1/+1 | |
| 2017-09-06 | doc: Sync classref with current source | Rémi Verschelde | 1 | -115/+176 | |
| [ci skip] | |||||
| 2017-09-06 | Further symlink fixes | supagu | 1 | -16/+26 | |
| 2017-09-06 | Fixes ERR_EXPLAIN being overwritten | Ignacio Etcheverry | 1 | -2/+1 | |
| 2017-09-05 | hide next pass for material types that make it pointless, closes #10686 | Juan Linietsky | 2 | -0/+17 | |
| 2017-09-05 | Added a warning for when a PC compression is not found for the project, ↵ | Juan Linietsky | 1 | -1/+8 | |
| closes #10626 | |||||
| 2017-09-05 | Setting visibility on GridMap now works. Closes #907. | David Saltares | 2 | -0/+20 | |
| Basically, `GridMap` wasn't reacting to the `NOTIFICATION_VISIBILITY_CHANGED` event. This reacts to such events and walks over the set of `Octants` and all of their `MultiMeshInstances` to set their visibility on the `VisualServer`. | |||||
| 2017-09-05 | Fix directional vertex shaded light which was using normal instead of light ↵ | Juan Linietsky | 1 | -1/+1 | |
| color, closes #10608 | |||||
| 2017-09-05 | Escape special character in classes.xml | Ignacio Etcheverry | 1 | -1/+1 | |
| 2017-09-05 | Added support for for, break and continue. Closes #10560, closes #10661 | Juan Linietsky | 3 | -22/+183 | |
| 2017-09-05 | Provide NativeScript properties in definition order | Ruslan Mustakov | 3 | -30/+76 | |
| 2017-09-05 | Fix unshaded materials render | Evgeny Zuev | 1 | -8/+5 | |
| 2017-09-05 | Optimize memory allocations in VariantParser::get_token | Evgeny Zuev | 1 | -10/+12 | |
| 2017-09-05 | Add StringBuffer class | Evgeny Zuev | 2 | -0/+184 | |
| 2017-09-05 | Automatically redraw when shaders using TIME are visible, fixes #10554 | Juan Linietsky | 5 | -0/+14 | |
| 2017-09-04 | Fix opaque pre pass, closes #10472 | Juan Linietsky | 3 | -40/+41 | |
| 2017-09-05 | Fix UNIX file open | Hein-Pieter van Braam | 1 | -9/+8 | |
| In #10973 I refactored FileAccessUnix::_open() but I accidentally made it impossible to create new files. This fixes that and fixes #10984 | |||||
| 2017-09-05 | fixed log colors | toger5 | 2 | -4/+1 | |
| 2017-09-04 | Fix ETC2 import for luminance/lumalpha textures, fixes #10421 | Juan Linietsky | 1 | -2/+1 | |
| 2017-09-05 | MeshLibrary: remove duplicated line | Poommetee Ketson | 1 | -1/+0 | |
| 2017-09-04 | Improve guessing of what editor to switch to, fixes #10405 | Juan Linietsky | 1 | -10/+22 | |
| 2017-09-04 | Remove NULL check from Object::cast_to() | Hein-Pieter van Braam | 1 | -12/+0 | |
| After discussing this with @reduz on IRC we agreed to remove these checks. We now consider cast_to() to be NULL safe | |||||
| 2017-09-04 | Make UNIX file access more correct | Hein-Pieter van Braam | 1 | -23/+65 | |
| Check for errors in the POSIX recommended ways. | |||||
| 2017-09-04 | Don't compare float to int | Henrik Andersson | 1 | -1/+1 | |
| 2017-09-04 | documented StyleBoxFlat | toger5 | 1 | -2/+42 | |
| 2017-09-04 | fixed copy on osx + help selection color | toger5 | 2 | -1/+17 | |
| 2017-09-04 | changed tree font color to be more saturated | toger5 | 1 | -1/+1 | |
| 2017-09-04 | fixed hover line for menu button | toger5 | 3 | -8/+24 | |
| 2017-09-04 | Fixed theme (chagnes introduced in light theme) | toger5 | 1 | -5/+7 | |
| - adapted contrast color intensity (to make buttons less bright) - added missing border for lineEdit - removed unnecassary code for option button | |||||
| 2017-09-04 | EditorAbout: fix names being selectable | Poommetee Ketson | 1 | -1/+1 | |
| 2017-09-04 | -Changed KinematicBody API yet again to make it friendlier | Juan Linietsky | 7 | -118/+197 | |
| -Fixed get_scale functions (and added set_scale) to make it more coherent when decomposing and composing (fixes bugs in transform interpolation) | |||||
| 2017-09-04 | ProjectSettings: enhance add action error, fix confirm dialog | Poommetee Ketson | 2 | -18/+38 | |
| - Disable add action button if name is invalid - Fix dialog being ConfirmationDialog instead of AcceptDialog | |||||
| 2017-09-04 | 2DEditor: enhance viewport cursor shape | Poommetee Ketson | 2 | -0/+47 | |
| 2017-09-03 | Add note to Array#sort_custom about the dangers of using random return values | Jared A. Scheel | 1 | -1/+1 | |
| 2017-09-03 | Fixes language overridden external editors | Ignacio Etcheverry | 5 | -4/+20 | |
| 2017-09-03 | Fix. resizeable -> resizable. | Daniel J. Ramirez | 3 | -14/+14 | |
| (not actually a typo, but the rest of the API uses resizable) | |||||
