Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-12 | C#: Fix explicit enum values when exporting member | Ignacio Etcheverry | |
2018-09-12 | Make core/ includes absolute, remove subfolders from include path | Rémi Verschelde | |
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes. | |||
2018-09-12 | C#: Fix cs_files glue mismatch bug | Ignacio Etcheverry | |
2018-09-12 | Fix/workaround for issue #21667 | Ignacio Etcheverry | |
When a Reference managed instance is garbage collected and its finalizer is called, it could happen that the native instance is referenced once again before the finalizer can unreference and memdelete it. The workaround is to create a new managed instance when this happens (at least for now). | |||
2018-09-12 | Add some mono root hint dirs for OSX | Ignacio Etcheverry | |
Fixes #13355 | |||
2018-09-12 | Allow special characters in C# glue files | Ignacio Etcheverry | |
Fixes #21139 - Surround the generated file modules/mono/glue/cs_compressed.gen.h with ifdef TOOLS_ENABLED | |||
2018-09-12 | Cleanup of c# api files and bindings generator | Ignacio Etcheverry | |
- We no longer generate RID and NodePath C# classes. Both will be maintained manually. - We no longer generate C# declarations and runtime registration of internal calls for the following classes: RID, NodePath, String, GD, SignalAwaiter and Godot.Object (partial base). - We no longer auto-generate the base members of Godot.Object. They will be maintained manually as a partial class. This makes it easier to maintain these C# classes and their internal calls, as well as the bindings generator which no longer generates C# classes that don't derive from Godot Object, and it no longer generates the Godot.Object base members (which where unreadable in the bindings generator code). - Added missing 'RID(Object from)' constructor to the RID C# class. - Replaced MONO_GLUE_DISABLED constant macro with MONO_GLUE_ENABLED. - Add sources in module/mono/glue even if glue is disabled, but surround glue files with ifdef MONO_GLUE_ENABLED. | |||
2018-09-11 | Fix mistake in previous commit | Rémi Verschelde | |
2018-09-11 | UPnP: Fix includes of thirdparty headers | Rémi Verschelde | |
2018-09-10 | Merge pull request #21822 from aaronfranke/mono-pascal | Ignacio Etcheverry | |
[Mono] Various style changes and naming standardization | |||
2018-09-10 | [Mono] Various style changes and naming standardization | Aaron Franke | |
2018-09-10 | [Mono] Tabs -> Spaces | Aaron Franke | |
2018-09-10 | Fix crash when extending non-existing GDScript file | Rémi Verschelde | |
Fixes #21682 with a partial revert of #21411. The ~Ref() destructor (from 'scriptres') already takes care of freeing the 'script' resource. | |||
2018-09-10 | Merge pull request #21921 from AndreaCatania/bugfix2 | Rémi Verschelde | |
Fix bullet crashes | |||
2018-09-10 | Fiex bullet crash | Andrea Catania | |
2018-09-10 | Fix indentation in bullet SCsub | Poommetee Ketson | |
2018-09-09 | Merge pull request #21866 from ↵ | George Marques | |
Paulb23/fix_scientific_notation_highlight_issue_21435 Fixed scientific notation not highlighting correctly, issue 21435 | |||
2018-09-08 | Merge pull request #21861 from fire/visual_script_18024 | Juan Linietsky | |
Change the default variable Visual Script constructor to use EditorInspector and etc | |||
2018-09-08 | Fixed scientific notaion not highlighting correctly, issue 21435 | Paulb23 | |
2018-09-08 | Change the default variable constructor to use EditorInspector and updated ↵ | K. S. Ernest (iFire) Lee | |
property hints that were changed. | |||
2018-09-07 | Fixed crash during raycast and CCD radius calculation | Andrea Catania | |
2018-09-07 | Merge pull request #21808 from AndreaCatania/optitri | Juan Linietsky | |
Optimized bullet trimesh collision | |||
2018-09-07 | Update bullet to Master 12409f1118a7c7a266f9071350c70789dfe73bb9 | Andrea Catania | |
2018-09-06 | Fixing trimesh precision | Andrea Catania | |
2018-09-06 | Optimized in case is used just 1 shape with no transform | Andrea Catania | |
2018-09-05 | Merge pull request #21771 from WiggleWizard/get-stack-fix | Rémi Verschelde | |
Fixed return type for get_stack() function call | |||
2018-09-05 | Fixed bullet area vs Trimesh shape overlap | Andrea Catania | |
2018-09-05 | Fixed return type for get_stack() function call | WiggleWizard | |
2018-09-04 | Fix invalid deref in NativeScript script classes | Will Nations | |
2018-08-31 | Merge pull request #21605 from Faless/ws_no_proto | Max Hilbrunner | |
Allow WebSocket connect with no sub-protocols. | |||
2018-08-30 | Allow WebSocket connect with no sub-protocols. | Fabio Alessandrelli | |
2018-08-30 | [NativeScript] implement refcount instance binding funcs | Thomas Herzog | |
2018-08-30 | [GDNative] add initial core 1.1 extension | Thomas Herzog | |
2018-08-30 | Merge pull request #21575 from YeldhamDev/gridmap_deprecated_fix | Rémi Verschelde | |
Small change on how GridMap's "theme" is deprecated | |||
2018-08-29 | doc: Sync classref with current source | Rémi Verschelde | |
2018-08-29 | Small change on how GridMap's "theme" is deprecated | Michael Alexsander Silva Dias | |
2018-08-29 | Fixed crash if convex has 0 vertices | Andrea Catania | |
2018-08-29 | Merge pull request #21538 from jmf/master | Rémi Verschelde | |
Fix CSGBox size | |||
2018-08-29 | Initialise rays_found count in test_ray_separation. | Ibrahn Sahir | |
Prevents branch on uninit that could result in crashes with move_and_slide. | |||
2018-08-29 | Fix vformat(), minor typos and word puzzles | Yuri Chornoivan | |
2018-08-28 | Fix to make CSGBox the size that is entered in Width, Height and Depth ↵ | jmf | |
instead of twice those lengths. | |||
2018-08-28 | Merge pull request #21511 from eska014/webm-nomt | Rémi Verschelde | |
Fix WebM and Theora video in HTML5 export | |||
2018-08-27 | Merge pull request #21497 from neikeq/hm | Ignacio Etcheverry | |
C# generated classes ignore warning CS1591 and cleanup | |||
2018-08-27 | C# generated classes ignore warning CS1591 and cleanup | Ignacio Etcheverry | |
2018-08-27 | Merge pull request #21420 from elasota/fix-last-mipmap | Rémi Verschelde | |
Fix uninitialized mipmap levels | |||
2018-08-27 | Merge pull request #21449 from vnen/gdscript-builtin-is | Rémi Verschelde | |
Allow `is` operator to test built-in types | |||
2018-08-27 | Merge pull request #21369 from Noshyaar/exportflag | Rémi Verschelde | |
Deprecating bit flags export with no hint text | |||
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-27 | Merge pull request #21450 from vnen/gdscript-type-space | Rémi Verschelde | |
Remove space before colon on type hints | |||
2018-08-27 | Merge pull request #21469 from akien-mga/glsl-clang-format | Rémi Verschelde | |
Style: Enable clang-format on GLSL shaders |