summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-09-25Mention `MeshLibrary.get_item_preview()` not working in running projectHugo Locurcio
2019-09-25Merge pull request #32325 from SaracenOne/add_mesh_bindings_fixRémi Verschelde
SpatialEditorGizmo add_mesh bindings fix
2019-09-25Merge pull request #32350 from nekomatata/fix-bezier-curve-deselection-errorRémi Verschelde
Fixed missing argument for clear_selection signal in Bezier Curve editor
2019-09-25Merge pull request #32345 from nekomatata/fix-curve-delete-point-errorRémi Verschelde
Reset hovered point in Curve when deleted to avoid errors on draw
2019-09-25Fixed missing argument for clear_selection signal in Bezier Curve editorPouleyKetchoupp
Also removed unused clear_selection signal in Animation Track editor (never emitted) Fixes #32348
2019-09-25Reset hovered point in Curve when deleted to avoid errors on drawPouleyKetchoupp
Fixes #32344
2019-09-25Merge pull request #32341 from KoBeWi/be_goneRémi Verschelde
Clean snapping lines after resize
2019-09-25Merge pull request #32340 from YeldhamDev/minitab_icon_substitutionRémi Verschelde
Replace "GuiMiniTabMenu" with "GuiTabMenu" and tweak it
2019-09-25Replace "GuiMiniTabMenu" with "GuiTabMenu" and tweak itMichael Alexsander Silva Dias
2019-09-25Clean snapping lines after resizeTomasz Chabora
2019-09-25Merge pull request #32291 from Dragoncraft89/add_load_resource_flagRémi Verschelde
Add flag to control the replacement of files by ProjectSettings.load_resource_pack
2019-09-25Add flag to control the replacement of files by ↵Florian Kothmeier
ProjectSettings.load_resource_pack
2019-09-25Merge pull request #32047 from ↵Rémi Verschelde
codecustard/fix_scrollwheel_triggering_focus_change Fix scrollwheel triggering focus change
2019-09-25Merge pull request #32333 from akien-mga/debugger-error-condRémi Verschelde
Show C++ error condition in script editor debugger
2019-09-25Merge pull request #32119 from Calinou/unify-axis-colorsRémi Verschelde
Use the same axis colors consistently in the 2D and 3D editors
2019-09-25Merge pull request #32199 from starryalley/fix_seekRémi Verschelde
Fix VideostreamGDNative seek
2019-09-25Merge pull request #32051 from qarmin/some_error_explanationRémi Verschelde
Added some obvious errors explanations
2019-09-25Show C++ error condition in script editor debuggerRémi Verschelde
This was removed by @RyanStein in #21884 in the case where an error message is provided, but this is actually useful information to have even when there is a custom error message. This PR makes it so that the "C++ Error" is shown whenever there is a custom error message provided. Also adds method name to the error item title, and re-adds the most relevant info in the tooltip for quick error checks without expanding. Renames C Error/Source to C++ Error/Source, since that's what it is. And fix untranslatable entry due to misuse of TTR(). And some more cleanup for readability. Cf. https://github.com/godotengine/godot/issues/32276#issuecomment-534119914
2019-09-25SpatialEditorGizmo add_mesh bindings fixSaracen
2019-09-25Added some obvious errors explanationsqarmin
2019-09-25Merge pull request #32296 from ↵Rémi Verschelde
BenjaminRiley/save-original-scene-after-save-as-branch 'Save Branch as Scene' also saves original scene
2019-09-25'Save Branch as Scene' adds to undo historyBenjamin Riley
When saving a branch as a scene, can now undo replacing the original branch with the new branch scene. 'Save Branch as Scene' previously would not mark the original scene as changed, and therefore no prompt would appear if the scene was closed immediately after saving the branch. The new branch scene is not deleted when undo-ing.
2019-09-25Merge pull request #32306 from hbina/unused_variableRémi Verschelde
Fixed incorrect usage of variables in querying values.
2019-09-25Merge pull request #32319 from Calinou/optimize-svgsRémi Verschelde
Optimize editor icon SVGs using svgcleaner
2019-09-25Merge pull request #32318 from Calinou/improve-audiostreamplayer3d-gizmoRémi Verschelde
Improve the AudioStreamPlayer3D gizmo
2019-09-25Merge pull request #32327 from YeldhamDev/lineedit_icon_minsizeRémi Verschelde
Make LineEdit's minimal size adapt to its icons
2019-09-25Merge pull request #32329 from marstaik/gltf_32314Rémi Verschelde
glTF: Fixed mistake with root node calculation in skin_verify
2019-09-25Merge pull request #32320 from vnen/gdscript-type-resolutionRémi Verschelde
GDScript: Fix type resolution not being return in some cases
2019-09-24glTF: Fixed mistake with root node calculation in skin_verifyMarios Staikopoulos
Was not actually grabbing the computed roots for comparison, but instead was grabbing the disjoint_set representatives.
2019-09-25Make LineEdit's minimal size adapt to its iconsMichael Alexsander Silva Dias
2019-09-24GDScript: Fix type resolution not being return in some casesGeorge Marques
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.
2019-09-24Optimize editor icon SVGs using svgcleanerHugo Locurcio
This makes editor binaries about 230 KB smaller. The command used was: parallel svgcleaner --multipass {} {} ::: editor/icons/*.svg
2019-09-24Fixed incorrect use of variablesHanif Bin Ariffin
The previous committer mistakenly used the wrong variable to query some values. This commit simply changes it so that it queries the right Dict.
2019-09-24Improve the AudioStreamPlayer3D gizmoHugo Locurcio
This adds more lines to the emission angle cone to give a better feel of depth in the 3D world.
2019-09-24Merge pull request #32317 from KoBeWi/just_dontRémi Verschelde
Don't try to slice empty arrays
2019-09-24Don't try to slice empty arraysTomasz Chabora
2019-09-24Merge pull request #32309 from clayjohn/particles_tex_scaleRémi Verschelde
Fix particles scale randomization
2019-09-24fix particles scale randomizationclayjohn
2019-09-24Merge pull request #32269 from m4gr3d/improve_build_timeRémi Verschelde
Update the Godot gradle build tasks to provide additional flexibility
2019-09-24doc: Sync classref with current sourceRémi Verschelde
2019-09-24Merge pull request #32285 from Faless/crypto/initial_docsRémi Verschelde
Add documentation for crypto-related classes.
2019-09-24Merge pull request #32307 from neikeq/mesegeRémi Verschelde
Fix wrong defval in EditorSpatialGizmo.add_mesh method bind
2019-09-24Merge pull request #32305 from akien-mga/doc-fixup-self-closing-tagRémi Verschelde
doc: Fix parsing of self-closing XML tags
2019-09-24Updates the Godot gradle tasks to enable manual runs of the `scons` command.fhuya
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 ```
2019-09-24Fix wrong defval in EditorSpatialGizmo.add_mesh method bindIgnacio Etcheverry
The type of the parameter 'skeleton' was changed from 'RID' to 'SkinReference', yet the default value remained 'RID()'.
2019-09-24Improve C# bindings generator errors for default param valuesIgnacio Etcheverry
2019-09-24Add documentation for crypto-related classes.Fabio Alessandrelli
Add documentation for Crypto, CryptoKey, HashingContext, and X509Certificate. Add documentation for `StreamPeerSSL.accept_peer`. Ref #29871.
2019-09-24doc: Fix parsing of self-closing XML tagsRémi Verschelde
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 `/>`.
2019-09-24Merge pull request #31925 from bojidar-bg/31855-overriden-properties-docsRémi Verschelde
Add overriden properties to the documentation
2019-09-24Fix copyright headers and style issuesRémi Verschelde