summaryrefslogtreecommitdiffstats
path: root/modules
Commit message (Collapse)AuthorAgeFilesLines
* 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
| * | | Proper GDNative export on AndroidRuslan Mustakov2017-11-211-0/+6
| | | |
* | | | Merge pull request #12284 from bojidar-bg/allow-subproperty-setRémi Verschelde2017-11-213-4/+4
|\ \ \ \ | |_|/ / |/| | | Allow for getting/setting "dotted" properties of objects
| * | | Allow for getting/setting indexed properties of objects using get/set_indexedBojidar Marinov2017-11-213-4/+4
| | | | | | | | | | | | | | | | Performance is around the same as using pure set() through GDScript.
* | | | Merge pull request #13149 from touilleMan/gdnative-fix-scsub-generatorThomas Herzog2017-11-211-10/+18
|\ \ \ \ | | | | | | | | | | [GDNative] fix gdnative_api_struct.gen.h generation
| * | | | Fix&prettify gdnative_api_struct.gen.h GDNATIVE_API_INIT macro generationEmmanuel Leblond2017-11-211-10/+18
| | | | |
* | | | | Merge pull request #13145 from AndreaCatania/gravRémi Verschelde2017-11-211-0/+2
|\ \ \ \ \ | |/ / / / |/| | | | Set gravity on change body mode
| * | | | Set gravity on change body modeAndreaCatania2017-11-211-0/+2
| | |_|/ | |/| | | | | | | | | | Fixes #13140
* | | | Merge pull request #11933 from cxong/masterJuan Linietsky2017-11-211-3/+3
|\ \ \ \ | |/ / / |/| | | Use "Command" instead of "Meta" for macOS (#1619)
| * | | Use "Command" for OSX in translation strings (#1619)Cong2017-10-131-3/+3
| | | |
* | | | Merge pull request #12590 from poke1024/bsearchRémi Verschelde2017-11-213-0/+35
|\ \ \ \ | | | | | | | | | | Add bsearch and bsearch_custom to Array
| * | | | Add bsearch and bsearch_custom to Arraypoke10242017-11-213-0/+35
| | |_|/ | |/| |
* | | | Merge pull request #12573 from poke1024/macostouchpadRémi Verschelde2017-11-211-0/+10
|\ \ \ \ | | | | | | | | | | Native pan and zoom for macOS + InputEventGesture
| * | | | Native pan and zoom for macOSBernhard Liebl2017-11-211-0/+10
| |/ / /
* / / / Revert this change, we need to export symbols on the library sideBastiaan Olij2017-11-211-1/+1
|/ / /
* | | Merge pull request #12754 from MillionOstrich/compress-image-etcRémi Verschelde2017-11-201-6/+8
|\ \ \ | | | | | | | | Attempt at fixing size mismatch in _compress_etc
| * | | Fix size mismatch in _compress_etcMillionOstrich2017-11-201-6/+8
| | | | | | | | | | | | | | | | Use j for inner loop
* | | | Add cartesian to polar conversion functionspablotato2017-11-206-22/+110
| | | |
* | | | Allow to extends constant variablesanikoyes2017-11-202-9/+51
|/ / /
* | | Merge pull request #11783 from endragor/ios-export-frameworksRémi Verschelde2017-11-204-47/+54
|\ \ \ | | | | | | | | Allow exporting third-party iOS Frameworks
| * | | Allow configuring iOS exportRuslan Mustakov2017-11-214-47/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - EditorExportPlugin's _export_begin accepts all the arguments related to the current export (is_debug, path, flags). - EditorExportPlugin API is extended with methods allowing to configure iOS export: add_ios_framework, add_ios_plist_content, add_ios_linker_flags, add_ios_bundle_file. - iOS export template now contains Godot as a static library so that it can be linked with third-party Frameworks and GDNative static libraries. - Adds method to DirAccess for recursive copying of a directory. - Fixes iOS export to work with Xcode 9 (released recently).
* | | | Merge pull request #11940 from GodotExplorer/debuggerRémi Verschelde2017-11-203-7/+80
|\ \ \ \ | | | | | | | | | | Enhanced debugger for godot 3.0
| * | | | Move the remote scene tree to the scene tree dock.Geequlim2017-11-171-4/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ignore all script constants in the global section of the breakpoint stack. Check property size before send to avoid too large of data be sent. Fix crash while clear the remote objects from the debugger.
| * | | | Abstract some method for script systemgeequlim2017-11-173-6/+66
| | | | |
* | | | | bullet cast_motion: reordered null checkmuiroc2017-11-201-3/+3
| |/ / / |/| | |
* | | | Merge pull request #13094 from karroffel/gdnative-api-register-nativecallThomas Herzog2017-11-204-3/+16
|\ \ \ \ | | | | | | | | | | [GDNative] add a way to register call types
| * | | | [GDNative] add a way to register call typesKarroffel2017-11-204-3/+16
| | | | |
* | | | | Merge pull request #13093 from karroffel/gdnative-static-linking-is-killThomas Herzog2017-11-202-41/+3
|\ \ \ \ \ | |/ / / / |/| | | | [GDNative] removed static linking fields
| * | | | [GDNative] removed static linking fieldsKarroffel2017-11-202-41/+3
| | | | |
* | | | | Revert "Added loop_begin and loop_end to OggVorbisStream"Juan Linietsky2017-11-203-72/+22
|/ / / /
* | | | Merge pull request #13060 from karroffel/gdnative-version-errorThomas Herzog2017-11-207-27/+49
|\ \ \ \ | | | | | | | | | | [GDNative] (version-) error reporting + small API change
| * | | | [GDNative] removed godot_string_c_strKarroffel2017-11-203-13/+0
| | | | |
| * | | | [GDNative] loading error and version error procsKarroffel2017-11-204-14/+49
| | | | |
* | | | | Merge pull request #12644 from mrcdk/ogg_loopRémi Verschelde2017-11-203-22/+72
|\ \ \ \ \ | | | | | | | | | | | | Added loop_begin and loop_end to OggVorbisStream
| * | | | | Add loop_begin and loop_end to OggVorbisStreamMrCdK2017-11-043-22/+72
| | | | | |