summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2018-08-24Merge pull request #21049 from AndreaCatania/jointsRémi Verschelde
Improved 6DOF joint implementation
2018-08-24Merge pull request #20717 from PJB3005/18-08-04-godot-exceptionsIgnacio Etcheverry
Fix Mono exception handling.
2018-08-24Merge pull request #20707 from aaronfranke/mono-combineIgnacio Etcheverry
[Mono] Move several related small files
2018-08-24Make some debug prints verbose-only, remove othersRémi Verschelde
2018-08-24Add print_verbose to print to stdout only in verbose modeRémi Verschelde
Equivalent of the cumbersome: if (OS::get_singleton()->is_stdout_verbose()) print_line(msg);
2018-08-23Fix Mono exception handling.Pieter-Jan Briers
First of all, this fixes the handling of exceptions so the engine actually notices them, it was broken in 4172fa03b56bb60fe096639585e0ca40df73b677. Next, unhandled exceptions now do NOT cause an abort(). They're logged now, so before #16987. The pending exception thing still works though.
2018-08-23[Mono] Move several small related filesAaron Franke
2018-08-23[Mono] AABB - Position, Size, End setters, Rect2 - End setterKelly Thomas
2018-08-23Merge pull request #21301 from elasota/multithread-cvttRémi Verschelde
Multithread BPTC compression jobs
2018-08-23Merge pull request #21254 from YeldhamDev/tile_grid_map_sideRémi Verschelde
Add option to move Tile/GridMap editors to another side
2018-08-23Merge pull request #21240 from aaronfranke/mono-project-vectorRémi Verschelde
[Mono] Vector2/3 Project methods
2018-08-23Merge pull request #21167 from elasota/squish-quality-configRémi Verschelde
Support higher-quality S3TC compression modes
2018-08-22Multithread CVTT compression jobselasota
2018-08-22Add option to move Tile/GridMap editors to another sideMichael Alexsander Silva Dias
2018-08-22Merge pull request #21283 from YeldhamDev/gridmap_meshlib_renameRémi Verschelde
Rename instances of the word "theme" to "mesh_library" in GridMap and MeshLibrary editors
2018-08-22Merge pull request #21174 from KellyThomas/c-sharp-feature-parity-rect2Ignacio Etcheverry
[Mono] Rect2 - add Abs(), rename private fields
2018-08-22Merge pull request #21229 from marcelofg55/ns_profilingRémi Verschelde
Implemented profiling functions for NativeScript
2018-08-22Rename instances of the word "theme" to "mesh_library" in GridMap and ↵Michael Alexsander Silva Dias
MeshLibrary editors
2018-08-22Implemented profiling functions for NativeScriptMarcelo Fernandez
2018-08-22[Mono] Vector2/3 Project methodsAaron Franke
2018-08-22Use cluster fit at higher quality levelselasota
2018-08-22Merge pull request #21281 from elasota/fix-squish-sseRémi Verschelde
Fix Squish SSE misconfiguration
2018-08-22Merge pull request #21279 from vnen/gdscript-fixesRémi Verschelde
Assorted GDScript fixes
2018-08-21BPTC supportelasota
2018-08-21Fix Squish SSE misconfigurationelasota
2018-08-21GDScript: Ignore unused arguments/local vars that start with _George Marques
Makes it simple to ignore particular arguments without adding special comments, especially in engine-defined functions.
2018-08-21GDScript: Show warning messages only on debuggerGeorge Marques
Don't show on console/output anymore.
2018-08-22Mono: Fix weird crash when loading corlibIgnacio Etcheverry
2018-08-22Merge pull request #18502 from space-wizards/18-04-29-assembly-load-hookIgnacio Etcheverry
assembly_load_hook fallback for registering GDMonoAssemblies.
2018-08-21Style: Fix issues that went past CIRémi Verschelde
2018-08-21Merge pull request #21253 from aaronfranke/plane-constantsRémi Verschelde
Rename Plane constants, add to Mono
2018-08-21Merge pull request #21267 from akien-mga/color-grayscaleRémi Verschelde
Deprecate incorrect Color::gray()
2018-08-21GDScript: Fix undefined behavior on GDScriptTokenizerBufferGeorge Marques
2018-08-21Added ray / shape / point / motion / rest cast exclusion of area and or bodyAndrea Catania
2018-08-21GDScript: Forbid invalid identifiers in match bindingsGeorge Marques
Also forbid shadowing a variable from an upper scope.
2018-08-21GDSCript: Fix cyclic class dependency detectionGeorge Marques
2018-08-21Deprecate 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-21Merge pull request #20101 from panzergame/shape_marginRémi Verschelde
Expose bullet shape margin to UI.
2018-08-21Rename Plane constants, add to MonoAaron Franke
But I'm not tagging PR as [Core] or [Mono] due to it being a minor change anyway.
2018-08-21doc: Sync classref with current sourceRémi Verschelde
2018-08-20Fixes to move and slide and ray separation, implement separation in Godot ↵Juan Linietsky
physics
2018-08-20Merge pull request #20908 from AndreaCatania/kiSlopeJuan Linietsky
Improved move_and_slide function stay on slope
2018-08-20Add PROPERTY_HINT_PLACEHOLDER_TEXT for String propertiesRé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-20Merge pull request #21208 from jmca/masterRémi Verschelde
Prevent "cannot use a string pattern on a bytes-like object"
2018-08-20Prevent "cannot use a string pattern on a bytes-like object"Justin Abene
Fixes #21207
2018-08-19Bullet picking will now ignore objects without input_ray_pickableJohn Teasdale
2018-08-19Highlight multiline strings as strings instead of commentsHugo Locurcio
Since multiline comments are not officially supported in GDScript, it is more common to see multiline strings being used as strings rather than as comments (which are actually standalone expressions here). This closes #21142.
2018-08-19Added ray shape and move_and_slide with snapping on 3D.Andrea Catania
Added stop_on_slope on 2d part
2018-08-19mono: add Abs() to Rect2 and rename private fieldsKelly Thomas
2018-08-18Improved move_and_slide function to stay on slope and fall on steep slopeAndrea Catania