summaryrefslogtreecommitdiffstats
path: root/modules/visual_script/visual_script.cpp
Commit message (Expand)AuthorAgeFilesLines
* Validates VisualScript.add_node input nodeHaoyu Qiu2021-08-021-0/+1
* Use const references where possible for List range iteratorsRémi Verschelde2021-07-251-4/+4
* Use C++ iterators for Lists in many situationsAaron Franke2021-07-231-65/+65
* Optimize StringName usagereduz2021-07-181-2/+2
* [Net] Rename NetworkedMultiplayerPeer to MultiplayerPeer.Fabio Alessandrelli2021-07-121-1/+1
* Rename `instance()`->`instantiate()` when it's a verbLightning_A2021-06-191-3/+3
* Added support for scripts reporting multiple errors to ScriptTextEditorEric M2021-06-191-1/+1
* Fix default value binding in VisualScriptFunctionStateGeorge Marques2021-06-141-1/+1
* [Net] Refactor RPCs, remove RSETsFabio Alessandrelli2021-06-011-92/+6
* Highlight control flow keywords with a different colorHugo Locurcio2021-05-051-0/+4
* Replace remaining uses of `NULL` with `nullptr`Rémi Verschelde2021-04-291-1/+1
* Core: Drop custom `copymem`/`zeromem` definesRémi Verschelde2021-04-271-2/+2
* Style: Apply clang-tidy's `readability-braces-around-statements`Rémi Verschelde2021-04-051-3/+5
* Style: Apply clang-tidy's `modernize-use-nullptr`Rémi Verschelde2021-04-051-4/+4
* Fix VisualScriptFunctionState connect to null object crashjmb4622021-04-031-0/+1
* Fixes small typos and grammar correctionAnshul7sp12021-03-121-2/+2
* Initialize class/struct variables with default values in modules/Rafał Mikrut2021-02-081-9/+0
* Merge pull request #44914 from swarnimarun/master-visualscript-refactorRémi Verschelde2021-01-041-1/+1
|\
| * Fix doc for the VisualScript class.Swarnim Arun2021-01-051-1/+1
* | Merge pull request #39649 from swarnimarun/master-visualscript-refactorRémi Verschelde2021-01-041-591/+484
|\|
| * Refactoring Visual ScriptSwarnim Arun2021-01-011-591/+484
* | Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
|/
* Rename empty() to is_empty()Marcel Admiraal2020-12-281-4/+4
* Remove connect *_compat methodsAaron Franke2020-12-051-1/+1
* Remove empty lines around braces with the formatting scriptAaron Franke2020-11-161-1/+0
* Refactored variant constructor logicreduz2020-11-091-2/+2
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
* VisualScript: Fix -Wduplicate-branches warningRémi Verschelde2020-07-221-7/+1
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-53/+103
* Style: Enforce separation line between function definitionsRémi Verschelde2020-05-141-0/+41
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-205/+0
* Add ability to bind typed arrays to script APIJuan Linietsky2020-04-211-0/+4
* Update vsnodes on editing vs variablesSwarnim Arun2020-04-031-0/+20
* Replace NULL with nullptrlupoDharkael2020-04-021-19/+19
* Style: Set clang-format Standard to Cpp11Rémi Verschelde2020-03-171-4/+4
* Merge pull request #36723 from AndreaCatania/fix-rsetRémi Verschelde2020-03-131-2/+2
|\
| * Fixed rset method for gdscript and visual scriptAndrea Catania2020-03-021-2/+2
* | Refactor ScriptDebugger.Fabio Alessandrelli2020-03-081-15/+15
|/
* Signals: Manually port most of remaining connect_compat usesRémi Verschelde2020-02-281-2/+2
* Signals: Port connect calls to use callable_mpRémi Verschelde2020-02-281-5/+3
* Reimplement Mutex with C++'s <mutex>Pedro J. Estébanez2020-02-261-18/+8
* Reworked signal connection system, added support for Callable and Signal obje...Juan Linietsky2020-02-201-42/+42
* PoolVector is gone, replaced by VectorJuan Linietsky2020-02-181-1/+1
* ObjectID converted to a structure, fixes many bugs where used incorrectly as ...Juan Linietsky2020-02-121-4/+4
* Optmized data sent during RPC and RSet calls.Andrea Catania2020-02-121-16/+109
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
* Fix some crashes, overflows and using variables without valuesRafał Mikrut2019-11-011-0/+1
* Visualscript editor graph unification & refactoringSwarnim Arun2019-09-261-10/+59
* Merge pull request #30852 from swarnimarun/vs_tools_scriptRémi Verschelde2019-09-221-2/+13
|\
| * Tool Mode for VisualscriptSwarnim Arun2019-09-211-2/+13