aboutsummaryrefslogtreecommitdiff
path: root/modules/visual_script
Commit message (Collapse)AuthorAgeFilesLines
* Change ".." punctuation for "..." in editor strings (#16507)Hugo Locurcio2018-06-051-3/+3
| | | | (cherry picked from commit 1c419531a009f48aa074f9b5f93b98d387c33723)
* Fix documentation version stringsHein-Pieter van Braam2018-06-0145-45/+45
|
* Hand-merge API hash fixes #18514Hein-Pieter van Braam2018-04-291-0/+2
| | | | | | This hasn't made it into master yet but is important for mono support. If this turns out to be the wrong call we'll revert and merge whatever next version of this becomes available.
* Remove incorrect & potentially confusing references to EulerWill Vincent2018-04-282-3/+3
| | | | | | | | e is referred to as Euler’s number, so technically the MATH_EXP description in VisualScript doc was not incorrect, though could potentially lead to confusion. e is different from Euler’s constant however, making the existing GDScript exp & VisualScriptMathConstant descriptions nvalid. (cherry picked from commit b6b8c7b21564672ad5e2e96eb95b857c73404b44)
* doc: Update version string for 3.0.2Rémi Verschelde2018-02-2745-45/+45
|
* Update doc version strings to 3.0.1Hein-Pieter van Braam2018-02-2445-45/+45
|
* Fix typos with codespellluz.paz2018-02-222-5/+5
| | | | | | | | | | | | | | | | Found via `codespell -q 3 --skip="./thirdparty,./editor/translations" -I ../godot-word-whitelist.txt` Whitelist consists of: ``` ang doubleclick lod nd que te unselect ``` (cherry picked from commit 612ab4bbc6f2396f4dcd68c3f142f7dfa2f5f0a5)
* doc: Fix references to online tutorials after godotengine/godot-docs#1015Rémi Verschelde2018-01-251-1/+1
|
* doc: Sync with current sourceRémi Verschelde2018-01-2545-45/+45
| | | | | | Also enhance RigidBody docs as per https://github.com/godotengine/godot-docs/pull/1018 and fix the version tag in all files (not really stable yet, but it makes no sense to hardcode rc3 at this stage).
* doc: Replace some more "val" with "value" + syncRémi Verschelde2018-01-171-1/+1
|
* Fixes for parameter names of builtin functions in visual scripts/coreChaosus2018-01-161-8/+8
|
* Filled tutorial field in most relevent classes.Juan Linietsky2018-01-151-0/+1
| | | | Added tutorial display in doc.
* Make sure PropertyHint matches in the VisualScript editor.K. S. Ernest (iFire) Lee2018-01-151-1/+2
|
* doc: Update version string in XMLRémi Verschelde2018-01-1345-45/+45
|
* Update docsBojidar Marinov2018-01-121-14/+2
| | | | [ci skip]
* Bind many more properties to scriptsBojidar Marinov2018-01-123-12/+12
| | | | | | | Notable potentially breaking changes: - PROPERTY_USAGE_NOEDITOR is now PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_NETWORK, without PROPERTY_USAGE_INTERNAL - Some properties were renamed, and sometimes even shadowed by new ones - New getter methods (some virtual) were added
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-0518-3/+21
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Update copyright statements to 2018Rémi Verschelde2018-01-0118-36/+36
| | | | Happy new year to the wonderful Godot community!
* Merge pull request #14754 from willnationsdev/dictionary-copyRémi Verschelde2017-12-171-3/+3
|\ | | | | Added 'duplicate' function for Dictionary in C++ and API.
| * Dictionary::copy -> ::duplicateWill Nations2017-12-171-3/+3
| |
* | Now every variant type has its icon.Daniel J. Ramirez2017-12-171-8/+8
| |
* | General use Variant type icons, plus other icon updates.Daniel J. Ramirez2017-12-171-52/+52
| |
* | Cleanup some #if 0'd codeRémi Verschelde2017-12-172-949/+0
|/
* Scons: Build modules in seperate env.Andreas Haas2017-12-131-1/+4
|
* Merge pull request #14358 from RandomShaper/fix-vscriptRémi Verschelde2017-12-091-0/+1
|\ | | | | Fix function arg count not considered in VisualScript
| * Fix function arg count not considered in VisualScriptPedro J. Estébanez2017-12-071-0/+1
| |
* | Merge pull request #14332 from akien-mga/clang-formatRémi Verschelde2017-12-071-3/+3
|\ \ | | | | | | Update style for clang-format 5.0.0, new min required version
| * | Style: Apply new clang-format 5.0 style to all filesRémi Verschelde2017-12-071-3/+3
| |/
* / doc: Sync classref after a496dd4d, removing NOEDITOR properties from docRémi Verschelde2017-12-078-42/+42
|/
* Merge pull request #13436 from hoelzl/pr-vs-yield-signal-oneshotRémi Verschelde2017-12-061-1/+1
|\ | | | | Connect signal for VisualScript "Yield Signal" using oneshot mode
| * Connect signal for VisualScript "Yield Signal" using oneshot modeMatthias Hoelzl2017-12-011-1/+1
| | | | | | | | | | Since the first call to a VisualScriptFunctionState invalidates the state, any further call results in errors.
* | Merge pull request #13427 from hoelzl/pr-vs-enable-yieldRémi Verschelde2017-12-061-1/+1
|\ \ | | | | | | Make VisualScriptFunctionState instantiable
| * | Make VisualScriptFunctionState instantiableMatthias Hoelzl2017-11-301-1/+1
| |/
* / Fixed typo: substract to subtractIndah Sylvia2017-12-051-4/+4
|/
* Fix constant node value editMarcin Zawiejski2017-11-251-2/+2
|
* Made Vector::ptrw explicit for writing, compiler was sometimes using the ↵Juan Linietsky2017-11-253-9/+9
| | | | | | wrong function, leading to unnecesary copy on writes and reduced performance.
* doc: Fix enum tags thanks to 2bc6db6Rémi Verschelde2017-11-249-119/+119
|
* doc: Remove setters and getters now exposed via properties/membersRémi Verschelde2017-11-2429-938/+0
|
* doc: Update header version for 3.0-betaRémi Verschelde2017-11-2445-45/+45
|
* doc: Sync classref with current sourceRémi Verschelde2017-11-242-18/+18
|
* 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
| |
* | Add cartesian to polar conversion functionspablotato2017-11-203-22/+68
| |
* | Merge pull request #12930 from vnen/gdscrit-output-printJuan Linietsky2017-11-171-1/+1
|\ \ | | | | | | Make tool scripts print on the editor Output panel
| * | Add print_error function, akin to print_lineGeorge Marques2017-11-161-1/+1
| | |
* | | Rename Rect3 to AABB.Ferenc Arn2017-11-171-2/+2
|/ / | | | | | | Fixes #12973.
* | doc: Make all module docs self-containedRémi Verschelde2017-11-1545-4/+3052
| |
* | Create API to add and remove VisualScript custom nodesGeorge Marques2017-11-157-0/+135
| | | | | | | | | | | | | | This makes a VisualScriptEditor singleton, which gives plugins the ability to register their own custom nodes. Those will be available for insertion in the Visual Script editor, under the "Custom Nodes" category.
* | Move singleton management from ProjectSettings to EngineLeon Krause2017-11-142-13/+14
| |
* | Add support for the TAU constant. Fixes #12094.Goutte2017-11-123-4/+7
| |