aboutsummaryrefslogtreecommitdiff
path: root/modules/visual_script/visual_script_expression.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-12-14Adds `macports_clang` build flag to build using clang-5.0 form MacPorts ↵bruvzg5-3/+25
(with OpenMP support).
2017-12-14fix for compiling the new lightmapperMichele Valente2-4/+4
also changed two calls that were ambiguous
2017-12-14Added indent_style to editorconfig, fixed inconsistent use of tabs and ↵Colin Kinloch3-7/+11
spaces in indentation.
2017-12-14-Add lightmapperJuan Linietsky44-1138/+4584
-Fixes to unwrapper (remove degenerates), makes Thekla not crash -Added optional cancel button in EditorProgress -Added function to force processing of events (needed for cancel button)
2017-12-14Revert property changes in "[DOCS] AnimationPlayer new props, members/methods"Rémi Verschelde4-51/+82
This partially reverts commits e79456519d0c1dff98ffa5f39e8e7c962b7dd553 and 2d07fe29208b9ccef31ab654ca5405edac7a0de7, which introduced API changes needing more in-depth review at this stage. Kept the removal of "get_position" binding, redundant with "get_current_animation_position". Kept docs changes where applicable. Also removed the obsolete "stop_all" method which does the same as "stop". Fixes #14602.
2017-12-13[DOCS] JSON: Small fixesMax Hilbrunner2-6/+6
2017-12-13Fix crash (and bug) in RichTextLabelpoke10241-1/+1
2017-12-13TileMapEditor: Fix tile placement.Andreas Haas1-0/+1
Fixes #14625
2017-12-13Scons: Build modules in seperate env.Andreas Haas4-6/+19
2017-12-12Fixed Tileset editor button having the wrong text and not being translatable.Michael Alexsander Silva Dias1-1/+1
2017-12-12Change -std=gnu++11 to -stc=c++11 and don't pass flag to MSVCMatthias Hoelzl2-2/+4
2017-12-12Fix mingw build for thekla_atlasHein-Pieter van Braam3-14/+16
2017-12-12Enhance undoredo action name, TTR, cleanupPoommetee Ketson12-163/+18
2017-12-12Mono: Build in cloned env.Andreas Haas1-9/+12
Use a cloned env, so that toggling glue_enabled doesn't force a full rebuild as mentioned in #14584.
2017-12-12stream_peer_openssl: add missing break & formatMax Hilbrunner1-2/+6
2017-12-12HTTPClient: Add PATCH method and missing HTTP status codesmhilbrunner3-4/+73
2017-12-12Change statable to multistate, remove extra separatorPoommetee Ketson4-25/+24
2017-12-11[DOC] Update Node class refChris Bradfield1-51/+55
2017-12-12Update libwebp to 0.6.1volzhs162-6153/+7519
* lossless performance and compression improvements + a new 'cruncher' mode (-m 6 -q 100) * ARM performance improvements with clang (15-20% w/ndk r15c) * webp-js: emscripten/webassembly based javascript decoder * miscellaneous bug & build fixes
2017-12-11Use MinGW specific binutils for debug symbols separationbruvzg1-3/+8
2017-12-11Properly support nested ternary expressionsBojidar Marinov1-4/+7
Fixes 14324.
2017-12-11Highlight Editor Settings categoriesRay Koopa1-1/+2
2017-12-11Fix Index p_current=0 error at starting editorvolzhs2-3/+9
2017-12-11doc: Sync classref with current sourceRémi Verschelde4-17/+42
2017-12-11Fix align=center info is not saved with CheckBox & CheckButtonvolzhs1-1/+1
2017-12-11Fix CheckBox minimum sizevolzhs4-11/+58
2017-12-11Fix CheckButton minimum sizevolzhs6-17/+40
2017-12-11Fixed bad bindingsAndreaCatania1-2/+2
2017-12-11Fixed #14503Dmitry Koteroff1-0/+1
2017-12-10Fix SceneTreeEditor crashing when calling _deselect_itemsStefano Bonicatti1-1/+2
The crash can be triggered for instance by trying to reparent a node and clicking on the background of the Reparent Node window.
2017-12-10[DOCS] IP.xml typo fixMax Hilbrunner1-2/+2
2017-12-10[DOCS] HTTPClient & HTTPRequestmhilbrunner2-28/+101
2017-12-10[DOCS] IPMax Hilbrunner1-2/+12
2017-12-10[DOCS] IP_UnixMax Hilbrunner1-0/+2
2017-12-10Fix skybox generation imprecision with ClangStefano Bonicatti1-2/+2
The bug generated a "blue circle" at the bottom end of the y axis, and probably one too at the other end. This is caused by a normalization of a vector which results in its y component to be sometimes > 1.0 or < -1.0 in Clang. This value is then used with acos(), which returns NaN. Fixes #11247
2017-12-10iOS: Drop obsolete code from never-public modulesRémi Verschelde2-138/+3
2017-12-10Fix player window centering on macOS retina screensBernhard Liebl1-1/+8
2017-12-10Implemented physics linear and angular lockAndreaCatania12-133/+122
2017-12-10Drop unused OS_Unix::has_data and related logicRémi Verschelde1-32/+2
Closes #5536.
2017-12-10Updated controller mappings for windows/mac/linuxAndrew Silver1-8/+73
2017-12-10TileMap: Drop unused center_x/center_y booleansRémi Verschelde3-67/+4
Two years later they are still unused and we do not know their intend use case, so tschüss. Closes #2513.
2017-12-10Fix crash in RichTextLabel::selection_copy()Bernhard Liebl2-3/+3
2017-12-10Fix wrong return value in some virtual method bindingsRémi Verschelde8-11/+43
2017-12-10Fix usage of signed type in skeleton shaderRémi Verschelde1-5/+7
The resulting primitive is drawn as GL_UNSIGNED_SHORT, so uvec4 should be used. Fixes #12804.
2017-12-10Fixed close current scene closing the wrong scene, issue 13844Paulb231-0/+3
2017-12-10Fixed a typo in the Node docsAndrew Silver1-1/+1
Fixed a typo in `remove_and_skip` [ci skip]
2017-12-10Ray cast return shape id. Fixes #14473AndreaCatania2-2/+9
2017-12-10fix certain popup close clicks with popup buttonsBernhard Liebl6-0/+31
2017-12-10Fix no mouse if touch device present in X11Pedro J. Estébanez1-16/+17
Plus several improvements in this area. Sadly, grabbing has been disabled until a better solution is found. Fixes #14427.
2017-12-10Implemented skeleton visibilityAndreaCatania9-18/+359
Removed code visibility code from popup menu