aboutsummaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAgeFilesLines
* Ray cast return shape id. Fixes #14473AndreaCatania2017-12-102-2/+9
|
* Style: Re-apply clang-format over recent invalid additionsRémi Verschelde2017-12-101-2/+2
|
* Fix missing parenthesisRémi Verschelde2017-12-091-1/+1
|
* GDNative: Fix warning when gdnative/singletons is missingRémi Verschelde2017-12-091-2/+5
|
* Merge pull request #14459 from vnen/gdscript-object-exportRémi Verschelde2017-12-091-0/+4
|\ | | | | Make GDScript parser raise error when exporting Object
| * Make GDScript parser raise error when exporting ObjectGeorge Marques2017-12-091-0/+4
| |
* | -Ability to and unwrap lightmap coordinates on importJuan Linietsky2017-12-092-3/+85
|/ | | | | | | | -Added unwrap functionality to Mesh -Ability to display and debug mesh UVs -Added multiline draw, so it's easier and faster to draw UVs -Many fixes to SurfaceTool -Fixes to Thekla Unwrap, but it's a piece of ass and it keeps crashing. Will have to go away
* Merge pull request #14358 from RandomShaper/fix-vscriptRémi Verschelde2017-12-091-0/+1
|\ | | | | Fix function arg count not considered in VisualScript
| * Fix function arg count not considered in VisualScriptPedro J. Estébanez2017-12-071-0/+1
| |
* | Merge pull request #12756 from Stratos695/masterRémi Verschelde2017-12-094-39/+22
|\ \ | | | | | | Allowing double-axis lock in RigidBody & KinematicBody (Fixes #12500)
| * | Allow double-axis lock in RigidBody and KinematicBodyEric Rybicki2017-11-104-39/+22
| | |
* | | Fix thekla_atlas buildHein-Pieter van Braam2017-12-082-2/+2
| | | | | | | | | | | | clang doesn't like c++ versions being supplied to build c source files.
* | | Import thekla_atlasHein-Pieter van Braam2017-12-084-0/+140
| | | | | | | | | | | | As requested by reduz, an import of thekla_atlas into thirdparty/
* | | Fixed is_playing funtion (was reporting wrong), closes #13928Juan Linietsky2017-12-071-2/+2
| | | | | | | | | | | | Made error reporting to opcode_set in gdscript a bit clearer
* | | Merge pull request #14332 from akien-mga/clang-formatRémi Verschelde2017-12-0751-227/+284
|\ \ \ | | | | | | | | Update style for clang-format 5.0.0, new min required version
| * | | Style: Apply new clang-format 5.0 style to all filesRémi Verschelde2017-12-0750-226/+284
| | | |
| * | | Style: Apply clang-format again on all filesRémi Verschelde2017-12-073-9/+8
| | |/ | |/| | | | | | | | | | Fixes issues introduced by newer clang-format versions or commits pushed directly without using the clang-format pre-commit hook.
* / | doc: Sync classref after a496dd4d, removing NOEDITOR properties from docRémi Verschelde2017-12-0711-61/+112
|/ /
* | Merge pull request #14006 from akien-mga/tinyexrRémi Verschelde2017-12-071-5/+20
|\ \ | | | | | | Fix TinyEXR import bug and update to current master
| * | TinyEXR: Fix EXR header when parsing pixels encoded as HALFRémi Verschelde2017-12-051-5/+20
| | | | | | | | | | | | | | | Also free the header and image properly after usage. Fixes #13490.
* | | Merge pull request #13436 from hoelzl/pr-vs-yield-signal-oneshotRémi Verschelde2017-12-061-1/+1
|\ \ \ | | | | | | | | Connect signal for VisualScript "Yield Signal" using oneshot mode
| * | | Connect signal for VisualScript "Yield Signal" using oneshot modeMatthias Hoelzl2017-12-011-1/+1
| | | | | | | | | | | | | | | | | | | | Since the first call to a VisualScriptFunctionState invalidates the state, any further call results in errors.
* | | | Merge pull request #13427 from hoelzl/pr-vs-enable-yieldRémi Verschelde2017-12-061-1/+1
|\ \ \ \ | |_|/ / |/| | | Make VisualScriptFunctionState instantiable
| * | | Make VisualScriptFunctionState instantiableMatthias Hoelzl2017-11-301-1/+1
| |/ /
* | | Improve slang, especially in user-visible partsUnknown2017-12-055-7/+4
| | |
* | | Merge pull request #13992 from ISylvox/substract-to-subtractRémi Verschelde2017-12-0510-16/+16
|\ \ \ | | | | | | | | Fix Typo: Substract to Subtract
| * | | Fixed typo: substract to subtractIndah Sylvia2017-12-0510-16/+16
| | | |
* | | | GDNative: Save singletons only if there's a changeGeorge Marques2017-12-051-2/+20
|/ / / | | | | | | | | | | | | Ensures that the Project Settings are saved only if the list of singletons actually changed.
* | | Exported variables now show in the correct order.Nathan Warden2017-12-021-2/+2
| | |
* | | Fixed bullet server null pointer checkAndrea Catania2017-11-301-1/+1
|/ / | | | | Fixed bullet server null pointer check
* | Changed the dynamic library open function to allow setting the path of the ↵Juan Linietsky2017-11-301-1/+1
| | | | | | | | library to open extra libraries.
* | disable caching for targets using helper functionsRhody Lugo2017-11-285-10/+5
| |
* | Set real world position, not virtual world position!Bastiaan Olij2017-11-281-1/+1
| |
* | use the same cache for all branches for appveyorRhody Lugo2017-11-285-1/+7
| |
* | Fix constant node value editMarcin Zawiejski2017-11-251-2/+2
| |
* | [GDNative] disable -fPIC flag with msvc compilerEmmanuel Leblond2017-11-251-2/+2
| |
* | Fix mono build after bc2e8d99Rémi Verschelde2017-11-251-2/+2
| |
* | Made Vector::ptrw explicit for writing, compiler was sometimes using the ↵Juan Linietsky2017-11-256-16/+16
| | | | | | | | | | | | wrong function, leading to unnecesary copy on writes and reduced performance.
* | doc: Fix enum tags thanks to 2bc6db6Rémi Verschelde2017-11-2411-125/+125
| |
* | doc: Remove setters and getters now exposed via properties/membersRémi Verschelde2017-11-2436-1188/+0
| |
* | doc: Update header version for 3.0-betaRémi Verschelde2017-11-2469-69/+69
| |
* | doc: Sync classref with current sourceRémi Verschelde2017-11-243-24/+18
| |
* | Removed shape marginAndreaCatania2017-11-232-3/+4
| |
* | Merge pull request #13202 from AndreaCatania/masterRémi Verschelde2017-11-231-0/+1
|\ \ | | | | | | Space override scratching when body is add to world
| * | Space override scratching when body is add to worldAndreaCatania2017-11-231-0/+1
| | | | | | | | | | | | Fixes #13182
* | | Merge pull request #13159 from AndreaCatania/rayRémi Verschelde2017-11-222-24/+24
|\ \ \ | | | | | | | | Removed type_mask and fixed some variable name
| * | | Removed type_mask and fixed some variable nameAndreaCatania2017-11-212-24/+24
| |/ /
* | | Merge pull request #13161 from Hinsbart/mono_caseRémi Verschelde2017-11-2213-483/+483
|\ \ \ | | | | | | | | Mono: Use PascalCase in core types.
| * | | Mono: Use PascalCase in core types.Andreas Haas2017-11-2113-483/+483
| | | |
* | | | Merge pull request #13130 from endragor/gdnative-android-exportRémi Verschelde2017-11-211-0/+6
|\ \ \ \ | | | | | | | | | | Proper GDNative export on Android