summaryrefslogtreecommitdiffstats
path: root/modules/visual_script/visual_script.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Add a bunch of missing Godot headers in own filesRémi Verschelde2017-03-051-0/+29
|
* -renamed globals.h to global_config.cpp (this seems to have caused a few ↵Juan Linietsky2017-02-211-1/+1
| | | | | | modified files) -.pck and .zip exporting redone, seems to be working..
* Rename the _MD macro to D_METHODHein-Pieter van Braam2017-02-131-65/+65
| | | | | | This new name also makes its purpose a little clearer This is a step towards fixing #56
* Remove use of _SCS from ADD_METHODHein-Pieter van Braam2017-02-131-2/+2
| | | | This saves typing and is a step towards fixing #56
* Style: Fix whole-line commented codeRémi Verschelde2017-01-141-1/+1
| | | | | They do not play well with clang-format which aligns the `//` part with the rest of the code block, thus producing badly indented commented code.
* Type renames:Juan Linietsky2017-01-111-1/+1
| | | | | | | | | | | | Matrix32 -> Transform2D Matrix3 -> Basis AABB -> Rect3 RawArray -> PoolByteArray IntArray -> PoolIntArray FloatArray -> PoolFloatArray Vector2Array -> PoolVector2Array Vector3Array -> PoolVector3Array ColorArray -> PoolColorArray
* -Changed most project settings in the engine, so they have major and minor ↵Juan Linietsky2017-01-051-1/+1
| | | | | | | | categories. -Changed SectionedPropertyEditor to support this -Renamed Globals singleton to GlobalConfig, makes more sense. -Changed the logic behind persisten global settings, instead of the persist checkbox, a revert button is now available
* ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵Juan Linietsky2017-01-021-68/+68
| | | | | | | | Variant. All usages of "type" to refer to classes were renamed to "class" ClassDB has been exposed to GDScript. OBJ_TYPE() macro is now GDCLASS()
* Renamed the bind_native functions to bind_vararg, should make it show the ↵Juan Linietsky2016-09-071-1/+1
| | | | documentation more clearly and also make it easier to bind to C#
* Changed Vector3.snap from fmod to stepify, which makes more sense, fixes #6399Juan Linietsky2016-09-061-1/+2
|
* Should Fix Compiling Export TemplatesISylvox2016-09-061-1/+2
| | | | | - Works on Windows, Linux x11, Linux Server, Android, HTML5 - Not tested on Mac/iOS (don't have Apple's devices yet)
* Removed script_variables/ prefix to VS properties, made them easier to ↵Juan Linietsky2016-09-041-26/+12
| | | | access from GD and Expression nodes
* Added expression nodes to visual script, please test.Juan Linietsky2016-09-041-5/+9
|
* Connection hints when connecting to empty space.Juan Linietsky2016-09-031-0/+17
|
* More improvements to visual script..Juan Linietsky2016-08-311-0/+20
| | | | fixed a bug of not saving when sub-nodes changed.
* -Reworked constant nodes betterJuan Linietsky2016-08-311-2/+13
| | | | -Added simple switch node, removed InputEventFilter
* More visual script improvementsJuan Linietsky2016-08-301-56/+155
| | | | | | -Added anti-aliasing on lines -Improved draw performance enormously -Removed sequence ports for most nodes, current visual scripts will likely be broken now. Sorry!
* Several all around fixes to visual scripting (in the process of creating demos)Juan Linietsky2016-08-281-4/+38
|
* More visual script workJuan Linietsky2016-08-251-18/+49
| | | | | | | | | -Block switches to 2d/3d editor if editing visual script -Added cast node in flow control -Added ability to do RPC in visual script -Comment nodes -Fix bug with inverted cable in connecting backwards -Copy and paste nodes, including from different scripts
* Proper function/property selection in visual script editing for property.Juan Linietsky2016-08-231-1/+12
| | | | This one has an ordered list, built-in description, search, etc.
* Brand new networked multiplayerJuan Linietsky2016-08-191-2/+11
|
* VisualScript: Adding TOOLS_ENABLED flag where needed (#6144)vkbsb2016-08-151-1/+2
| | | Fixes #6022.
* Added a simpler way to do sub-functions in both visual and gdscript with the ↵Juan Linietsky2016-08-081-1/+31
| | | | | | | subcall node. With this, visual script is almost done (missing registering custom nodes from addon). All this is probably pretty broken, too and needs a lot of testing.
* Added ability to create custom nodes from script.Juan Linietsky2016-08-071-0/+3
|
* Automatically turn on process callbacks if relevant callbacks in node existsJuan Linietsky2016-08-071-0/+17
|
* -Added yield nodes to visual scriptJuan Linietsky2016-08-071-78/+280
| | | | | -Added input selection nodes to visual script -Added script create icon for those who miss it, will only appear when it can be used.
* Reverted printable null object, seems to cause bugs around and not sure why.Juan Linietsky2016-08-061-2/+2
| | | | Will have to check better, likely for 3.0
* Likely with bugs and with some features are missing, as well as profiler ↵Juan Linietsky2016-08-061-17/+283
| | | | support, but VisualScript should be more or less done!
* VisualScript can now execute visual scripts, but there is no debugger or ↵Juan Linietsky2016-08-051-9/+861
| | | | profiler yet.
* More work on visual scripting..Juan Linietsky2016-08-031-0/+91
|
* WIP visual scripting, not working yet but you can check out stuffJuan Linietsky2016-08-021-0/+1156