Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-08 | Fixed error spam when inspecting remote tree | DualMatrix | |
Fixed error spam when inspecting remote tree, fixes #20365 | |||
2018-09-06 | Print an error if you try to instantiate an editor class outside the editor, ↵ | Juan Linietsky | |
fixes #17624 | |||
2018-09-03 | Added multi-monitor support for center_window() | Jared | |
2018-09-02 | Change ResourceLoader::load to make it more thread safe. | Juan Linietsky | |
2018-09-01 | Change some instances of args named "ev" to "event" | Michael Alexsander Silva Dias | |
2018-09-01 | Fixed duplicating AnimationPlayers leaving empty tracks. | DualMatrix | |
Fixed duplicating AnimationPlayers leaving empty tracks. I don't think duplicating arrays worked before. There was even this weird //does not make a long of sense but should work comment at the changed line. Fixes #21616 | |||
2018-08-29 | Add missing copyright headers | Rémi Verschelde | |
2018-08-28 | Fix DNS resolution when cache is invalid. | Fabio Alessandrelli | |
Fix StreamPeerTCP.connect_to_host return value. | |||
2018-08-27 | Removed fallback system and merged bptc into s3tc | Juan Linietsky | |
2018-08-27 | Merge pull request #21420 from elasota/fix-last-mipmap | Rémi Verschelde | |
Fix uninitialized mipmap levels | |||
2018-08-27 | Revert "Try closing gracefully before terminating process" | Rémi Verschelde | |
2018-08-27 | Merge pull request #21205 from KellyThomas/c-sharp-feature-parity-quat | Ignacio Etcheverry | |
[Mono] Quat - add some missing constructors and methods | |||
2018-08-25 | Fix mipmap levels not being initialized | elasota | |
2018-08-25 | Merge pull request #16927 from neikeq/rework-refcount-notify | Juan Linietsky | |
Notify instance binding data api of refcount increment/decrement | |||
2018-08-24 | Merge pull request #20712 from marcelofg55/midi_open_close | Juan Linietsky | |
Add OS::open_midi_inputs and OS::close_midi_inputs | |||
2018-08-24 | Fix bug leading to crashes in CSG due to bug in OAHashMap, closes #20403 | Juan Linietsky | |
2018-08-24 | Make some debug prints verbose-only, remove others | Rémi Verschelde | |
2018-08-24 | Add print_verbose to print to stdout only in verbose mode | Rémi Verschelde | |
Equivalent of the cumbersome: if (OS::get_singleton()->is_stdout_verbose()) print_line(msg); | |||
2018-08-24 | mono: Quat - add some missing constructors and methods | Kelly Thomas | |
2018-08-23 | Added max() and min() functions to array to return greater or lesser element ↵ | Juan Linietsky | |
(or null if data is not of compatible type or empty array). Closes #15697 | |||
2018-08-23 | Switched AnimatedTexture to a readers-writers lock, solves a race condition ↵ | Juan Linietsky | |
and fixes #20221 | |||
2018-08-23 | Merge pull request #21305 from Mr-Slurpy/expression-fix | Rémi Verschelde | |
Fixed bugs in expression class | |||
2018-08-23 | Merge pull request #21240 from aaronfranke/mono-project-vector | Rémi Verschelde | |
[Mono] Vector2/3 Project methods | |||
2018-08-23 | Merge pull request #21167 from elasota/squish-quality-config | Rémi Verschelde | |
Support higher-quality S3TC compression modes | |||
2018-08-23 | Fixed bugs in expression class | Daniel Eliasinski | |
2018-08-23 | Notify instance binding data api of refcount increment/decrement | Ignacio Etcheverry | |
2018-08-22 | get rid of default template function arguments, works on cxx03 | Juan Linietsky | |
2018-08-22 | Make sure resizing of float and half float images works, fixes #21157 | Juan Linietsky | |
2018-08-22 | [Mono] Vector2/3 Project methods | Aaron Franke | |
2018-08-22 | Use cluster fit at higher quality levels | elasota | |
2018-08-21 | BPTC support | elasota | |
2018-08-21 | Merge pull request #21236 from dragmz/windows-graceful-close | Rémi Verschelde | |
Try closing gracefully before terminating process | |||
2018-08-21 | Merge pull request #21250 from dragmz/ref-ptr-n(eq)-op | Rémi Verschelde | |
== and != operators for Ref<T> / T* | |||
2018-08-21 | Merge pull request #21253 from aaronfranke/plane-constants | Rémi Verschelde | |
Rename Plane constants, add to Mono | |||
2018-08-21 | Merge pull request #21267 from akien-mga/color-grayscale | Rémi Verschelde | |
Deprecate incorrect Color::gray() | |||
2018-08-21 | Added comment to class_db to know how to bind more then 6 params | Andrea Catania | |
2018-08-21 | Deprecate incorrect Color::gray() | Rémi Verschelde | |
This average is not a proper approximation of a grayscale value, get_v() is better suited for that. If we want a real to_grayscale() conversion, it's somewhat more involved: https://en.wikipedia.org/wiki/Grayscale Remove the deprecated Gray() from C# bindings as it conflicts with new named color constants. | |||
2018-08-21 | == and != operators for Ref<T> / T* | Marcin Zawiejski | |
This is to prevent crashes for code like: ... void Material::set_next_pass(const Ref<Material> &p_pass) { ERR_FAIL_COND(p_pass == this); ... that's been fixed in 031f763d4fda4e0dbcdf90a170aad3124c50c062 | |||
2018-08-21 | Rename Plane constants, add to Mono | Aaron Franke | |
But I'm not tagging PR as [Core] or [Mono] due to it being a minor change anyway. | |||
2018-08-21 | Remove circle/diamond and NodePath String constants | Rémi Verschelde | |
They were introduced in #14704 but need more discussion IMO, they don't strike me as core features that would have to be registered in Variant directly. Moreover, they currently break the documentation XML as string constants end up encoded as e.g. `value=""..""`. | |||
2018-08-21 | Merge pull request #21228 from Noshyaar/docs-bind | Rémi Verschelde | |
Fix arg name in docs, some copy-paste errors | |||
2018-08-20 | Try closing gracefully before terminating process | Marcin Zawiejski | |
Use a Microsoft recommended way of process termination for the project process run from the editor. This allows loaded DLLs to receive and handle DLL_PROCESS_DETACH notification and cleanup any global state before the process actually exits. | |||
2018-08-20 | Crash fixes for material and animtree | Juan Linietsky | |
2018-08-21 | Fix arg name in docs, some copy-paste errors | Poommetee Ketson | |
2018-08-20 | Massive rewrite to AnimationTree. Many APIs changed in order to: | Juan Linietsky | |
-Reuse resources -Expose properties in AnimationTree | |||
2018-08-20 | Add PROPERTY_HINT_PLACEHOLDER_TEXT for String properties | Rémi Verschelde | |
Use it to provide a better example for application identifiers on Android, iOS and macOS, where users thought they *had* to use this as a magic token. | |||
2018-08-20 | Remove faces in in QuickHull::build() that we don't need anymore | Hein-Pieter van Braam | |
We delete the faces for consideration in this loop but we can still sometimes find an edge that connects to this face. We now interate over all edges and disconnect edges connecting to this face. This fixes #16560 and fixes #17569 | |||
2018-08-16 | add project method to Vector2/3 | Thomas Herzog | |
2018-08-15 | Merge pull request #20560 from willnationsdev/class_icons | Rémi Verschelde | |
Add custom icons to script classes. | |||
2018-08-15 | Merge pull request #20945 from neikeq/dict-erase-retbool | Rémi Verschelde | |
Dictionary: remove erase_checked(key), make erase(key) return bool |