aboutsummaryrefslogtreecommitdiff
path: root/modules (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix possible buffer overflow in NetworkedMultiplayerENetFabio Alessandrelli2016-09-301-1/+1
| | | | NetworkedMultiplayerENet::get_packet was reporting the wrong size for the packet buffer exposing a potential buffer overflow in case of malformed/malicious packets
* Fix build for templatesGeorge Marques2016-09-122-0/+6
|
* Do ctrl-click on any code identifier to go to definiton or help page.Juan Linietsky2016-09-125-1/+482
|
* Merge pull request #6281 from bojidar-bg/gdscript-ternary-operatorJuan Linietsky2016-09-113-14/+125
|\ | | | | Ternary operator in GDScript (a if x else b)
| * Ternary operator in GDScript (a if x else b)Bojidar Marinov2016-08-253-14/+125
| | | | | | | | Fixes #1961
* | Added constants from types in code completion, somehow this was never added.Juan Linietsky2016-09-111-1/+12
| | | | | | | | Stuff like Label.ALIGN_CENTER or Mesh.PRIMITIVE_TRIANGLES did not complete..
* | -Cleaned up find/replace bar for replace (made selection only default if ↵Juan Linietsky2016-09-111-0/+1
| | | | | | | | | | | | selection exists), also made buttons look like buttons -Fixed a bug related to theme propagation, may be able to solve #6443, #6302 and others. Please test.
* | Merge pull request #5920 from 29jm/fix-warningsJuan Linietsky2016-09-102-3/+3
|\ \ | | | | | | Fix some more warnings
| * | Fix some comparisons between signed and unsigned integersJohan Manuel2016-08-131-2/+2
| | |
| * | Fix some warnings about misleading indentationJohan Manuel2016-08-131-2/+2
| | |
| * | Remove some unused variablesJohan Manuel2016-08-131-1/+1
| | |
* | | Merge pull request #6292 from bojidar-bg/gdscript-add-enumsJuan Linietsky2016-09-103-0/+111
|\ \ \ | | | | | | | | Adds enums to GDScript
| * | | Add enum naming, by assinging a given enum's values to a DictBojidar Marinov2016-08-271-0/+20
| | | |
| * | | Adds enums to GDScriptBojidar Marinov2016-08-273-0/+91
| | |/ | |/| | | | | | | Fixes #2966
* | | Merge pull request #6363 from vnen/winrtJuan Linietsky2016-09-101-0/+13
|\ \ \ | | | | | | | | Fix the support for WinRT/UWP
| * | | Patch thirdy-party libraries to build for WinRTGeorge Marques2016-09-031-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | - Patch enet code. - Patch OpenSSL code and add shims for unavailable API. - Add extra definition header for Freetype.
* | | | Merge pull request #6436 from djrm/iconsRémi Verschelde2016-09-091-1/+1
|\ \ \ \ | | | | | | | | | | Tweaked some icons, including xform one
| * | | | Tweaked some icons, including xform oneDaniel J. Ramirez2016-09-081-1/+1
| | | | |
* | | | | Renamed the bind_native functions to bind_vararg, should make it show the ↵Juan Linietsky2016-09-074-3/+11
|/ / / / | | | | | | | | | | | | documentation more clearly and also make it easier to bind to C#
* | | | -Added diectly editable expressions on node to VSEditor, closes #6392Juan Linietsky2016-09-063-5/+39
| | | | | | | | | | | | | | | | -Added ability for LineEdit to expand to fit text
* | | | Changed Vector3.snap from fmod to stepify, which makes more sense, fixes #6399Juan Linietsky2016-09-065-376/+504
| | | |
* | | | Should Fix Compiling Export TemplatesISylvox2016-09-063-2/+5
| | | | | | | | | | | | | | | | | | | | - Works on Windows, Linux x11, Linux Server, Android, HTML5 - Not tested on Mac/iOS (don't have Apple's devices yet)
* | | | Clean up GDScript templateRăzvan Cosmin Rădulescu2016-09-051-7/+5
| | | |
* | | | Removed script_variables/ prefix to VS properties, made them easier to ↵Juan Linietsky2016-09-042-27/+12
| | | | | | | | | | | | | | | | access from GD and Expression nodes
* | | | Added expression nodes to visual script, please test.Juan Linietsky2016-09-046-6/+1727
| | | |
* | | | small fixJuan Linietsky2016-09-031-0/+1
| | | |
* | | | Connection hints when connecting to empty space.Juan Linietsky2016-09-038-3/+491
| | | |
* | | | Made basic call nodes unsequenced, since they are like gdscript and most ↵Juan Linietsky2016-09-031-2/+2
| | | | | | | | | | | | | | | | return const.
* | | | Basic type constants for visual scriptJuan Linietsky2016-09-023-0/+189
| | | |
* | | | made visual script switch more flexibleJuan Linietsky2016-09-014-53/+53
| | | |
* | | | -Modified Input and added is_action_just_pressed() as well as ↵Juan Linietsky2016-09-012-3/+67
| | | | | | | | | | | | | | | | is_action_just_released()
* | | | More improvements to visual script..Juan Linietsky2016-08-319-24/+96
| | | | | | | | | | | | | | | | fixed a bug of not saving when sub-nodes changed.
* | | | -Reworked constant nodes betterJuan Linietsky2016-08-317-52/+340
| | | | | | | | | | | | | | | | -Added simple switch node, removed InputEventFilter
* | | | More visual script improvementsJuan Linietsky2016-08-309-276/+509
|/ / / | | | | | | | | | | | | | | | -Added anti-aliasing on lines -Improved draw performance enormously -Removed sequence ports for most nodes, current visual scripts will likely be broken now. Sorry!
* | | VisualScript: Fixed VariableGet vs VariableSet node names, fixes #6325J08nY2016-08-301-3/+3
| | |
* | | Fixed compilationDaniel J. Ramirez2016-08-291-1/+1
| | |
* | | Merge pull request #6303 from Marqin/enet_bind_ip_rebasedRémi Verschelde2016-08-292-2/+12
|\ \ \ | | | | | | | | add NetworkedMultiplayerENet::set_bind_ip
| * | | add NetworkedMultiplayerENet::set_bind_ipHubert Jarosz2016-08-272-2/+12
| | | | | | | | | | | | | | | | which allows ENet to bind on custom IP.
* | | | Merge pull request #6223 from RandomShaper/improve-gridmap-editRémi Verschelde2016-08-292-25/+23
|\ \ \ \ | | | | | | | | | | Improve/fix GridMap editor
| * | | | Improve/fix GridMap editorPedro J. Estébanez2016-08-212-25/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix cursor/palette update on tile eyedropping Fix editor not cleaning its state when becoming inactive, which leaves indicators behind among other issues Fix/improve menu/keyboard shortcuts Merge 'Gridmap Editor' and 'Grid Map' settings into the latter
* | | | | Merge branch 'master' of https://github.com/godotengine/godotJuan Linietsky2016-08-291-2/+38
|\ \ \ \ \
| * | | | | Colors for VS sockets and iconsDaniel J. Ramirez2016-08-281-2/+38
| | | | | |
* | | | | | Several all around fixes to visual scripting (in the process of creating demos)Juan Linietsky2016-08-289-129/+1174
|/ / / / /
* | | | | Merge pull request #6108 from djrm/vs_type_icons_2Rémi Verschelde2016-08-271-2/+2
|\ \ \ \ \ | |_|/ / / |/| | | | Icons for VScript types
| * | | | Icons for VScript typesDaniel J. Ramirez2016-08-231-2/+2
| | |/ / | |/| |
* | | | Even more work on visual script editor:Juan Linietsky2016-08-265-47/+410
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -Added constructor nodes, specialized and conversion ones. -Cleaned up how unconnected input default values are shown and edited (much cleaner) -Dragging scene nodes into graph makes a call dialog appear by deault -Dragging properties into graph is set by default, not get -fixed dragging internal functions into graph
* | | | More visual script workJuan Linietsky2016-08-2515-210/+1430
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | -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-2310-676/+129
| | | | | | | | | | | | This one has an ordered list, built-in description, search, etc.
* | | enet: Fix build on android and iphone platformsRémi Verschelde2016-08-221-0/+2
| | | | | | | | | | | | Fixes #6156.
* | | -High Level protocol optimization (should be smaller)Juan Linietsky2016-08-223-1/+147
|/ / | | | | | | | | | | -Ability to set compression to ENet packets (check API) -Fixed small bug in StringDB that lead to duplicate empty strings -Added a new class, StreamPeerBuffer, useful to create your own tightly packed data