Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-26 | Merge pull request #15967 from Gamblify/AudioRecordingModule | Rémi Verschelde | |
Audio Recording from godot | |||
2018-07-26 | Merge pull request #15643 from organicpencil/bullet_contact_impulse | Rémi Verschelde | |
Expose PhysicsDirectBodyState.get_contact_impulse | |||
2018-07-26 | AudioStreamSample can now be saved to a WAV file | Gustav Lund | |
8 and 16 bit sample saving has been implemented. | |||
2018-07-26 | Audio Recording module | Gustav Lund | |
Implements an Audio bus effect that outputs the audio from the bus into a wav file Now channels audio recording into an AudioStreamSample instead of saving to wav | |||
2018-07-26 | Merge pull request #20468 from vnen/typed-gds-fixes | Rémi Verschelde | |
General GDScript fixes | |||
2018-07-26 | Merge pull request #20478 from mattiascibien/main_Scene_filter | Rémi Verschelde | |
Fix main scene file filter | |||
2018-07-26 | Merge pull request #20477 from swarnimarun/vs_duplicate_fix | Rémi Verschelde | |
Fix Visual Script duplicate issue | |||
2018-07-26 | doc: Sync classref with current source | Rémi Verschelde | |
Fix various missing arguments in bindings. | |||
2018-07-26 | Fix main scene file filter | Mattias Cibien | |
2018-07-26 | i18n: Sync translations with Weblate | Rémi Verschelde | |
(cherry picked from commit 5c6c88ef15219d491fcf63e44da186dee6f8cda4) | |||
2018-07-26 | Merge pull request #18282 from aaronfranke/better-mathf | Rémi Verschelde | |
[Core] [Mono] Fix Color missing int export methods, added 64-bit | |||
2018-07-26 | Merge pull request #18955 from tagcup/fix_set_scale | Rémi Verschelde | |
Removed incorrect Basis::set_scale(). | |||
2018-07-26 | Merge pull request #19257 from volzhs/edit-visual-script | Rémi Verschelde | |
Open internal visual script editor while use external editor is on | |||
2018-07-26 | Fix Visual Script duplicate issue | Swarnim Arun | |
2018-07-26 | Merge pull request #19464 from bojidar-bg/19448-fix-subproperty-handling | Rémi Verschelde | |
Fix bug in animationplayer editor not using subproperties properly | |||
2018-07-26 | Merge pull request #18365 from JFonS/fix_billboard_scale | Rémi Verschelde | |
Added keep scale flag to billboard materials | |||
2018-07-26 | Added keep scale flag to billboard materials | JFonS | |
2018-07-26 | Merge pull request #20466 from TigerCaldwell/layer_toggle_fix | Rémi Verschelde | |
Layer editor shouldn't close each time one is toggled (#20399) | |||
2018-07-26 | Merge pull request #19758 from kyledayton/feature/spatial-viewport-lock-rotation | Rémi Verschelde | |
Add lock rotation feature to spatial editor viewport | |||
2018-07-25 | Add lock rotation feature to spatial editor viewport | Kyle Dayton | |
2018-07-25 | GDScript: Add type inference syntax for function arguments | George Marques | |
2018-07-25 | GDScript: Fix type detection for String formatting operator | George Marques | |
2018-07-25 | GDScript: Fix type detection on Object typed assign | George Marques | |
Also make typed assigns a debug-only thing, so release builds are more lenient on errors. | |||
2018-07-25 | GDScript: Allow accessing constants of outer classes | George Marques | |
2018-07-25 | GDScript: Enable built-in function introspection in non-tools | George Marques | |
Only for debug builds. Fix problems in non-tools targets. | |||
2018-07-25 | GDScript: Fix bogus error when a cursor token is found on class | George Marques | |
2018-07-25 | GDScript: Allow strict conversion when assigning typed variables | George Marques | |
2018-07-25 | GDScript: Fix mismatching between export hint and type hint | George Marques | |
2018-07-25 | GDScript: Allow inherited method to add optional arguments | George Marques | |
Also show the parent method signature in the error message. | |||
2018-07-25 | GDScript: Fix returned value of get_default_argument_count() | George Marques | |
2018-07-25 | GDScript: Fix main script detection | George Marques | |
2018-07-25 | GDScript: Look up local scope first for detecting type | George Marques | |
2018-07-26 | Merge pull request #20137 from hpvb/reduce-vector-cow | Hein-Pieter van Braam | |
Reduce unnecessary COW on Vector by make writing explicit | |||
2018-07-26 | Reduce unnecessary COW on Vector by make writing explicit | Hein-Pieter van Braam | |
This commit makes operator[] on Vector const and adds a write proxy to it. From now on writes to Vectors need to happen through the .write proxy. So for instance: Vector<int> vec; vec.push_back(10); std::cout << vec[0] << std::endl; vec.write[0] = 20; Failing to use the .write proxy will cause a compilation error. In addition COWable datatypes can now embed a CowData pointer to their data. This means that String, CharString, and VMap no longer use or derive from Vector. _ALWAYS_INLINE_ and _FORCE_INLINE_ are now equivalent for debug and non-debug builds. This is a lot faster for Vector in the editor and while running tests. The reason why this difference used to exist is because force-inlined methods used to give a bad debugging experience. After extensive testing with modern compilers this is no longer the case. | |||
2018-07-25 | Fixed Issue #20399 | Tiger Caldwell | |
2018-07-26 | allow comments and whitespace before shader_type declaration | Todd Ross | |
2018-07-26 | Merge pull request #20455 from Calinou/add-user-data-dropdowns | Rémi Verschelde | |
Add menu buttons to open the project and editor data folders | |||
2018-07-25 | Add menu buttons to open the project and editor data folders | Hugo Locurcio | |
2018-07-25 | Expose 64-bit Color methods to GDScript and fix/update Color XML doc | Aaron Franke | |
2018-07-25 | [Core] 64-bit int Color methods | Aaron Franke | |
2018-07-25 | [Mono] Fix Color incorrect ordering of int export methods, added 64-bit | Aaron Franke | |
[Mono] Fix Color incorrect ordering of int export methods, added 64-bit long export methods. | |||
2018-07-25 | Merge pull request #20448 from volzhs/duplicated-code | Rémi Verschelde | |
Remove duplicated codes | |||
2018-07-25 | Merge pull request #20260 from fire/editor_property_type | Juan Linietsky | |
Add editor property type so that inspector can search for objects. | |||
2018-07-25 | Merge pull request #20458 from neikeq/igiveuponbranchnames | Ignacio Etcheverry | |
Mono module bug fixes | |||
2018-07-25 | Add editor property type so that inspector can search for objects. This is a ↵ | K. S. Ernest (iFire) Lee | |
regression. | |||
2018-07-25 | Fix continuous attempt to reload domain with API assemblies out of sync | Ignacio Etcheverry | |
2018-07-25 | Mono: Fix domain reload never triggering | Ignacio Etcheverry | |
2018-07-25 | Fix '!valid' error spam on C# script instance create | Ignacio Etcheverry | |
2018-07-25 | Mono: Fix null dereferences | Ignacio Etcheverry | |
2018-07-25 | Merge pull request #20453 from ippan/fix_coremidi_case | Rémi Verschelde | |
change framework name CoreMidi to CoreMIDI |