Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-09-30 | Renamed fixed_process to physics_process | AndreaCatania | |
2017-09-23 | Rename get_position => get_playback_position and seek_pos => seek on audio ↵ | Marcelo Fernandez | |
classes | |||
2017-09-22 | Changed get_audio_bus and set functions to get_audio_bus_name and set | Marcelo Paez | |
and edited docs for Area2D due to renaming o get_audio_bus and set_audio_bus | |||
2017-09-20 | Rename pos to position in user facing methods and variables | letheed | |
Rename user facing methods and variables as well as the corresponding C++ methods according to the folloming changes: * pos -> position * rot -> rotation * loc -> location C++ variables are left as is. | |||
2017-09-13 | Renamed play to playing property, but now playing and is_playing is the ↵ | Juan Linietsky | |
same, to avoid confusing. Closes #11211 | |||
2017-09-12 | Fixed issues with surround sound on audio server | Marcelo Fernandez | |
2017-09-08 | Fix serveral recent new clang-format errors | Hein-Pieter van Braam | |
2017-09-06 | Renamed playing property of audiostreams to play, to make it clearer. Fixes ↵ | Juan Linietsky | |
#10730 Also disabled the auto shut down of the property when stream ends, to make it easier to animate | |||
2017-09-01 | Fix freeze on exit on audiostreamplayers when setting invalid stream, closes ↵ | Juan Linietsky | |
#10093 | |||
2017-08-25 | added finished signals to audio stream players, fixes #9928 | Juan Linietsky | |
2017-08-24 | Convert Object::cast_to() to the static version | Hein-Pieter van Braam | |
Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/ | |||
2017-08-19 | Removes editor_hint from SceneTree | Ignacio Etcheverry | |
2017-08-10 | Removes type information from method binds | Ignacio Etcheverry | |
2017-06-22 | Fixed bug regarding to two spatial 2d players not mixing properly | Juan Linietsky | |
2017-06-18 | -Added AudioStreamPlayer2D, for 2D positional sound | Juan Linietsky | |
-Added ability for Area2D to redirect positional sound to a specific audio bus |