aboutsummaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAgeFilesLines
* Fixed editor settings disappearing.Daniel J. Ramirez2017-11-092-10/+6
| | | | Some items that are no longer defined may disappear, but thats expected i guess.
* Merge pull request #12779 from karroffel/gdnative-api-struct-refactorRémi Verschelde2017-11-092-5756/+5823
|\ | | | | [GDNative] refactored API struct into core and extensions
| * [GDNative] refactored API struct into core and extensionsKarroffel2017-11-092-5756/+5823
| |
* | Merge pull request #12713 from AndreaCatania/masterJuan Linietsky2017-11-099-344/+228
|\ \ | | | | | | Rewritten kinematic system
| * | Rewritten kinematic systemAndreaCatania2017-11-079-344/+228
| | |
* | | Make sure we don't leak when an opcode is followed by itselfHein-Pieter van Braam2017-11-091-50/+80
| |/ |/| | | | | | | | | | | | | | | | | | | | | When compiling with GCC it is now possible for an opcode followed by itself to never leave the scope it is currently in. This leads to a situation where the dtor of a scope local variable isn't called which in turn can lead to a memory leak. By moving the goto outside of the scope of each opcode we guarantee that all dtors have been called before the next opcode gets dispatched. this fixes #12401
* | Merge pull request #12751 from bojidar-bg/11851-invalid-returns-countRémi Verschelde2017-11-091-0/+2
|\ \ | | | | | | Fix "Invalid outputs" error when calling a void method from visual script
| * | Fix "Invalid outputs" error when calling a void method from visual scriptBojidar Marinov2017-11-081-0/+2
| | | | | | | | | | | | Fixes #11851
* | | Fix crash when guessing type of variable declared to itselfBojidar Marinov2017-11-081-1/+3
|/ / | | | | | | Fixes #10972
* | Merge pull request #12725 from karroffel/gdnative-api-fixesRémi Verschelde2017-11-085-0/+38
|\ \ | | | | | | [GDNative] even more API fixes
| * | [GDNative] even more API fixesKarroffel2017-11-075-0/+38
| | |
* | | Merge pull request #12734 from BastiaanOlij/mobilevr_fix_typoRémi Verschelde2017-11-081-3/+7
|\ \ \ | | | | | | | | Fix has_gyro and has_grav mixup
| * | | Fix has_gyro and has_grav mixupBastiaan Olij2017-11-081-3/+7
| |/ /
* / / Fixed collision exception - #12681AndreaCatania2017-11-072-0/+5
|/ /
* | Merge pull request #12658 from AndreaCatania/bulletRémi Verschelde2017-11-062-19/+23
|\ \ | |/ |/| Bullet - Added support to multiple spaces
| * Bullet - Added support to multiple spacesAndreaCatania2017-11-052-19/+23
| |
* | Merge pull request #12642 from BrainBlasted/fix_msbuild_unixRémi Verschelde2017-11-052-0/+8
|\ \ | | | | | | Added fallback for msbuild.exe.
| * | Added for fallback msbuild.exe.BrainBlasted2017-11-042-0/+8
| | | | | | | | | | | | Fixes #12613
* | | Convert DOS line endings to Unix line endingsRémi Verschelde2017-11-057-1296/+1296
| |/ |/| | | | | | | | | | | Should fix issues some of us have with `misc/dist/uwp_template/AppxManifest.xml` always showing up as modified. Might cause issues on Windows due to the removal of BOMs or change of line endings in some of the Mono, UWP or gradlew.bat files, we will test and adapt if need be.
* | Bullet physics engine implementationAndreaCatania2017-11-0450-0/+9846
|/ | | | | | This is a bullet wrapper that allows Godot to use Bullet physics and benefit about all features. Also it support all specific Godot physics functionality like multi shape body, areas, RayShape, etc.. It improve the Joints, Trimesh shape, and add support to soft body even if Godot is not yet ready to it.
* Merge pull request #12612 from karroffel/gdnative-poolarray-accessorsThomas Herzog2017-11-043-1/+791
|\ | | | | [GDNative] added Read and Write accessors to pool arrays
| * [GDNative] added Read and Write accessors to pool arraysKarroffel2017-11-033-1/+791
| |
* | Merge pull request #12557 from BastiaanOlij/arvr_add_rumble_supportBastiaan Olij2017-11-043-0/+20
|\ \ | | | | | | Adding rumble support to ARVR controllers
| * | Adding rumble support to ARVR controllers (if implemented on the ARVR interface)Bastiaan Olij2017-11-013-0/+20
| | |
* | | [GDNative] small API bug fixesKarroffel2017-11-035-8/+31
| |/ |/|
* | -Modules can now add custom version info (added it for Mono)Juan Linietsky2017-11-011-0/+1
|/ | | | | -Version string takes this version info -Ability to download templates from the interweb (listing does not work yet)
* Merge pull request #12549 from neikeq/seriously-do-theyIgnacio Etcheverry2017-11-014-3/+22
|\ | | | | Mono cleanup fixes
| * Fix thread checking to queue instances for deletionIgnacio Etcheverry2017-11-012-3/+7
| |
| * Make sure gchandle bindings are released before cleanupIgnacio Etcheverry2017-11-012-0/+15
| |
* | Merge pull request #12546 from neikeq/do-people-read-theseIgnacio Etcheverry2017-11-011-1/+1
|\ \ | | | | | | Use mono_gc_wbarrier_set_arrayref for Array marshalling
| * | Use mono_gc_wbarrier_set_arrayref for Array marshallingIgnacio Etcheverry2017-11-011-1/+1
| |/
* | Merge pull request #12536 from Hinsbart/cs_templatesRémi Verschelde2017-10-312-2/+71
|\ \ | | | | | | Mono: support custom script templates.
| * | Mono: support custom script templates.Andreas Haas2017-10-312-2/+71
| |/ | | | | | | Also fixes a bug that prevented methods like `duplicate()` from copying the source code. (Copied from GDScript implementation)
* | Merge pull request #12035 from Chaosus/wrapfuncRémi Verschelde2017-10-314-0/+66
|\ \ | |/ |/| Added new Wrap functions for numbers
| * Added new wrap functionsChaosus2017-10-134-0/+66
| |
* | Merge pull request #12535 from neikeq/wtf···Ignacio Etcheverry2017-10-311-3/+3
|\ \ | | | | | | Fix msbuild hint paths returning only the directory
| * | Fix msbuild hint paths returning only the directoryIgnacio Etcheverry2017-10-311-3/+3
| | |
* | | Merge pull request #12525 from neikeq/wololoRémi Verschelde2017-10-302-7/+1
|\ \ \ | |/ / |/| | Remove Visual Studio for now from the external editors list
| * | Remove Visual Studio for now from the external editors listIgnacio Etcheverry2017-10-302-7/+1
| | |
* | | Merge pull request #12471 from mhilbrunner/autocompleteRémi Verschelde2017-10-301-2/+2
|\ \ \ | | | | | | | | Fix get_node() and $ autocompletion when using single quotes
| * | | Fix get_node() and $ autocompletion when using single quotesUnknown2017-10-301-2/+2
| | | |
* | | | Fix 'which' returning file without extension on WindowsIgnacio Etcheverry2017-10-301-3/+3
| |/ / |/| |
* | | Merge pull request #12491 from neikeq/waitasecond···Ignacio Etcheverry2017-10-293-24/+35
|\ \ \ | | | | | | | | Fix FrameworkPathOverride and assemblies path loop
| * | | Fix FrameworkPathOverride and assemblies path loopIgnacio Etcheverry2017-10-293-24/+35
| | | |
* | | | Fix build with Python 3 on WindowsMatthias Hoelzl2017-10-291-5/+7
| | | |
* | | | Mono: Fix Windows buildRémi Verschelde2017-10-291-2/+2
| | | |
* | | | Merge pull request #12475 from neikeq/ohuiiiRémi Verschelde2017-10-293-66/+54
|\| | | | | | | | | | | Fix regression from #12473 and #12388
| * | | Fix regression from #12473 and #12388Ignacio Etcheverry2017-10-293-66/+54
| | | |
* | | | Merge pull request #12474 from neikeq/sRémi Verschelde2017-10-298-17/+96
|\ \ \ \ | |/ / / |/| | | Mono: Add build project button and reload interval
| * | | Mono: Add build project button and reload intervalIgnacio Etcheverry2017-10-298-17/+96
| | | |