summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #32329 from marstaik/gltf_32314Rémi Verschelde2019-09-251-2/+23
|\ | | | | glTF: Fixed mistake with root node calculation in skin_verify
| * glTF: Fixed mistake with root node calculation in skin_verifyMarios Staikopoulos2019-09-241-2/+23
| | | | | | | | | | Was not actually grabbing the computed roots for comparison, but instead was grabbing the disjoint_set representatives.
* | Merge pull request #32320 from vnen/gdscript-type-resolutionRémi Verschelde2019-09-251-1/+2
|\ \ | |/ |/| GDScript: Fix type resolution not being return in some cases
| * GDScript: Fix type resolution not being return in some casesGeorge Marques2019-09-241-1/+2
|/ | | | | | Some situations caused the parser node type to not being update when trying to resolve the type, returning invalid data and breaking the parsing when it shouldn't. This patch fix the behavior.
* Merge pull request #32317 from KoBeWi/just_dontRémi Verschelde2019-09-241-0/+3
|\ | | | | Don't try to slice empty arrays
| * Don't try to slice empty arraysTomasz Chabora2019-09-241-0/+3
|/
* Merge pull request #32309 from clayjohn/particles_tex_scaleRémi Verschelde2019-09-243-6/+6
|\ | | | | Fix particles scale randomization
| * fix particles scale randomizationclayjohn2019-09-243-6/+6
| |
* | Merge pull request #32269 from m4gr3d/improve_build_timeRémi Verschelde2019-09-242-34/+82
|\ \ | | | | | | Update the Godot gradle build tasks to provide additional flexibility
| * | Updates the Godot gradle tasks to enable manual runs of the `scons` command.fhuya2019-09-242-34/+82
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Example: To generate for the `release` build target and for the `armv7`, `arm64v8` and `x86` architectures, run the commands: ``` cd godot scons -j4 platform=android target=release android_arch=armv7 scons -j4 platform=android target=release android_arch=arm64v8 scons -j4 platform=android target=release android_arch=x86 cd platform/android/java ./gradlew generateGodotTemplates ``` Notes: - The generated build templates will be located in the `godot/bin` directory (i.e: `android_debug.apk`, `android_release.apk`, `android_source.zip`). - The gradle command will only generate templates for the target(s) with available native shared libraries. For example, running the commands above will only generate the `android_release.apk` and `android_source.zip` files. To delete the generated artifacts, the following commands can be used: ``` cd platform/android/java ./gradlew cleanGodotTemplates ```
* | | doc: Sync classref with current sourceRémi Verschelde2019-09-242-2/+2
| | |
* | | Merge pull request #32285 from Faless/crypto/initial_docsRémi Verschelde2019-09-245-1/+72
|\ \ \ | | | | | | | | Add documentation for crypto-related classes.
| * | | Add documentation for crypto-related classes.Fabio Alessandrelli2019-09-245-1/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add documentation for Crypto, CryptoKey, HashingContext, and X509Certificate. Add documentation for `StreamPeerSSL.accept_peer`. Ref #29871.
* | | | Merge pull request #32307 from neikeq/mesegeRémi Verschelde2019-09-243-23/+64
|\ \ \ \ | | | | | | | | | | Fix wrong defval in EditorSpatialGizmo.add_mesh method bind
| * | | | Fix wrong defval in EditorSpatialGizmo.add_mesh method bindIgnacio Etcheverry2019-09-241-1/+1
| | | | | | | | | | | | | | | | | | | | The type of the parameter 'skeleton' was changed from 'RID' to 'SkinReference', yet the default value remained 'RID()'.
| * | | | Improve C# bindings generator errors for default param valuesIgnacio Etcheverry2019-09-242-22/+63
| | | | |
* | | | | Merge pull request #32305 from akien-mga/doc-fixup-self-closing-tagRémi Verschelde2019-09-24104-159/+168
|\ \ \ \ \ | | | | | | | | | | | | doc: Fix parsing of self-closing XML tags
| * | | | | doc: Fix parsing of self-closing XML tagsRémi Verschelde2019-09-24104-159/+168
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Follow-up to #31925, `<member />` tags just before `</members>` would cause a parsing issue, and we'd never notice that we're no longer parsing members. Also added space before closing `/>`.
* | | | | Merge pull request #31925 from bojidar-bg/31855-overriden-properties-docsRémi Verschelde2019-09-24112-56/+310
|\ \ \ \ \ | | | | | | | | | | | | Add overriden properties to the documentation
| * | | | | Run doctool after overridden properties changesBojidar Marinov2019-09-04105-11/+227
| | | | | |
| * | | | | Add overriden properties to the documentationBojidar Marinov2019-09-0411-51/+99
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #31855
* | | | | | Fix copyright headers and style issuesRémi Verschelde2019-09-247-7/+93
| | | | | |
* | | | | | doc: Sync classref with current sourceRémi Verschelde2019-09-2428-82/+327
| | | | | | | | | | | | | | | | | | | | | | | | Fix a few missing bindings or unspecified argument names and default values.
* | | | | | Merge pull request #31883 from aole/create-string-function-repeatRémi Verschelde2019-09-244-0/+28
|\ \ \ \ \ \ | | | | | | | | | | | | | | Create a GDScript String function repeat
| * | | | | | Create a GDScript String function repeatBhupendra Aole2019-09-034-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #30610
* | | | | | | Merge pull request #31935 from aole/Change-minimum-size-when-theme-changedRémi Verschelde2019-09-241-0/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Change minimum size when theme changed
| * | | | | | | Change minimum size when theme changedBhupendra Aole2019-09-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Need to call minimum_size_changed on controls whenever the theme is changed. Fixes godotengine#29816
* | | | | | | | Merge pull request #31944 from skyace65/visibilityenablerRémi Verschelde2019-09-241-1/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Clarify VisibilityEnabler2D description
| * | | | | | | | [Docs] Clarify VisibilityEnabler2D descriptionskyace652019-09-041-1/+1
| | | | | | | | |
* | | | | | | | | Merge pull request #31974 from YeldhamDev/tilegrid_map_fixesRémi Verschelde2019-09-243-29/+11
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Small fixes for the Tile/GridMap editors
| * | | | | | | | | Small fixes for the Tile/GridMap editorsMichael Alexsander Silva Dias2019-09-043-32/+12
| | | | | | | | | |
* | | | | | | | | | Merge pull request #31976 from Calinou/doc-improve-shadow-atlas-sizesRémi Verschelde2019-09-243-3/+4
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Improve documentation pertaining to shadow atlas sizes
| * | | | | | | | | | Improve documentation pertaining to shadow atlas sizesHugo Locurcio2019-09-043-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This partially addresses #27650.
* | | | | | | | | | | Merge pull request #31978 from YeldhamDev/inspector_dock_small_improvementsRémi Verschelde2019-09-242-4/+7
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Small improvements to the inspector dock
| * | | | | | | | | | | Small improvements to the inspector dockMichael Alexsander Silva Dias2019-09-042-4/+7
| |/ / / / / / / / / /
* | | | | | | | | | | Merge pull request #32267 from YeldhamDev/fix_tab_iconsRémi Verschelde2019-09-249-30/+134
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix various problems with tab-related icons
| * | | | | | | | | | | Fix various problems with tab-related iconsMichael Alexsander Silva Dias2019-09-229-30/+134
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #32283 from Calinou/project-manager-no-open-ctrl-double-clickRémi Verschelde2019-09-241-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Don't open a project in the list if Ctrl is held while double-clicking
| * | | | | | | | | | | | Don't open a project in the list if Ctrl is held while double-clickingHugo Locurcio2019-09-231-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #32286 from Calinou/doc-improve-os-shell-openRémi Verschelde2019-09-241-3/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improve the `OS.shell_open()` documentation
| * | | | | | | | | | | | | Improve the `OS.shell_open()` documentationHugo Locurcio2019-09-231-3/+4
| |/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a `mailto:` example to `OS.shell_open()`.
* | | | | | | | | | | | | Merge pull request #32288 from CorattiS86/fixing_#32263Rémi Verschelde2019-09-241-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Hide Console Window stores opposite value
| * | | | | | | | | | | | | Fix #32263 - Hide Console Window stores opposite valueStefano Coratti2019-09-231-1/+1
| | |_|_|_|_|_|_|_|/ / / / | |/| | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #32257 from Calinou/doc-set-window-title-performanceRémi Verschelde2019-09-241-0/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mention performance caveats of `OS.set_window_title()`
| * | | | | | | | | | | | | Mention performance caveats of `OS.set_window_title()`Hugo Locurcio2019-09-221-0/+1
| | |_|_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See #32254.
* | | | | | | | | | | | | Merge pull request #31970 from HaSa1002/i18nRémi Verschelde2019-09-241-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed out of range crash on remapping files for translation
| * | | | | | | | | | | | | Fix out of range crash on remapping filesHaSa10022019-09-041-1/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #32225 from Calinou/improve-editor-help-displayRémi Verschelde2019-09-241-19/+21
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improve the editor help display
| * | | | | | | | | | | | | | Improve the editor help displayHugo Locurcio2019-09-201-19/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Write the type after the parameter name for consistency with the GDScript static typing syntax. - Remove ":" after headers since they're already distinguished by their size. - Remove spaces before/aftere parentheses in method/signal argument lists.
* | | | | | | | | | | | | | | Merge pull request #32224 from KoBeWi/not_so_smart_linesRémi Verschelde2019-09-241-0/+9
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initialize snap_target and make sure it disappears