summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2019-06-27Merge pull request #30114 from Chaosus/vs_context_menuRémi Verschelde
Shows menu when dragging connection on empty space in visual shader
2019-06-27doc: Don't use `GlobalScope` scope in hyperlinks, it's automatically inferredRémi Verschelde
2019-06-27doc: Replace all [code]CONSTANT[/code] by new [constant CONSTANT] hyperlinksRémi Verschelde
2019-06-27Properly expose all Error constants to scripting languagesRémi Verschelde
2019-06-27doc: Fix scoped hyperlinks to same-class enums/methodsRémi Verschelde
The class name does not need to be specified when it is the current class.
2019-06-27doc: Complete and harmonize all _MAX constant descriptionsRémi Verschelde
2019-06-27Shows menu when dragging connection on empty space in visual shader graphChaosus
2019-06-27Merge pull request #30096 from akien-mga/doc-misc-updatesRémi Verschelde
doc: Proofread and complete various nodes
2019-06-27Merge pull request #30105 from Xrayez/bind-pip-geometryRémi Verschelde
Bind is_point_in_polygon in Geometry singleton
2019-06-26Merge pull request #30078 from Zylann/document_vs_cull_rayRémi Verschelde
Document VisualServer.instances_cull_ray
2019-06-27Bind is_point_in_polygon in Geometry singletonAndrii Doroshenko (Xrayez)
2019-06-26doc: Proofread and complete various nodesRémi Verschelde
All 100% completed: MainLoop, Node, Object, Path, Performance, Reference, Resource, SceneState, SceneTree, UndoRedo. Also fixed some en_GB occurrences as the reference spelling is en_US.
2019-06-26Merge pull request #25863 from AlexHolly/undo-redo-version-signalRémi Verschelde
UndoRedo add version changed signal
2019-06-26Document VisualServer.instances_cull_rayMarc Gilleron
2019-06-26Merge pull request #30088 from akien-mga/node-get_node_and_resourceRémi Verschelde
Node: Fix logic of has/get_node_and_resource and document it
2019-06-26UndoRedo add version changed signalAlexander Holland
added some functions to manage undo buttons
2019-06-26doc: Sync classref with current sourceRémi Verschelde
2019-06-26Node: Fix logic of has/get_node_and_resource and document itRémi Verschelde
Also document NodePath.
2019-06-26doc: Document EncodedObjectAsID, expose its propertyRémi Verschelde
2019-06-25doctool: Fix writing theme_item descriptionsRémi Verschelde
We already had support for parsing and saving theme_item descriptions in DocData, and displaying it in the editor, but doctool would drop the changes as it was not writing them back to the XML. Part of #29868.
2019-06-25Merge pull request #30030 from zaksnet/document-margincontainerRémi Verschelde
Document MarginContainer node
2019-06-24Remove references to mouse stuff from OSaustinried
There is nothing in `OS` about mouse grabbing or mouse cursors, that's in `Input`, so I'm cleaning up those references.
2019-06-24Merge pull request #30016 from randall-fulton/docs/object-set-deferredRémi Verschelde
Add docstring for Object.set_deferred
2019-06-24Area2D: Fix argument type of body_* signalsRémi Verschelde
Those signals receive either a PhysicsBody2D or a TileMap object, and what the emitting method checks internally is only that the object is a Node. In theory any Node could go through these signals if they talk directly to the PhysicsServer2D. Also updated docs. Fixes #27076. Might need further (compat breaking) improvement as this API is a bit confusing, cf. #24739.
2019-06-24Add docstring for Object.set_deferredRandall Fulton
2019-06-24Document MarginContainer NodeZak
2019-06-24doc: Sync classref with current sourceRémi Verschelde
2019-06-21Improve the `Engine.get_version_info()` documentationHugo Locurcio
This documents some keys that were missing and improves formatting.
2019-06-21Merge pull request #29935 from Faless/net/get_if_multicast_prRémi Verschelde
Multicast, more network interfaces info
2019-06-21Multicast support in NetSocket/PacketPeerUDPFabio Alessandrelli
2019-06-21Implement IP.get_local_interfaces.Fabio Alessandrelli
Allow getting interfaces names and assigned names. On UWP this is not supported, and the function will return one interface for each local address (with interface name the local address itself).
2019-06-20Document ReferenceRect NodeZak
Added missing documentation for ReferenceRect Node
2019-06-20Merge pull request #24249 from zorbathut/zorbathut/animimmediateRémi Verschelde
Implement AnimationPlayer call modes as per #23498.
2019-06-19Merge pull request #29901 from BastiaanOlij/fix_cameraserver_constRémi Verschelde
Made constants fully upper case in camera server
2019-06-19Merge pull request #27237 from Chaosus/astar_2dRémi Verschelde
Added 2D functions to AStar
2019-06-19Merge pull request #27389 from YeldhamDev/acceptdiag_label_wrapRémi Verschelde
Add option to enable autowrapping for label inside 'AcceptDialog'
2019-06-19Made constants fully upper case in camera serverBastiaan Olij
2019-06-19Merge pull request #28648 from KoBeWi/substr-1Rémi Verschelde
Make second parameter of substr optional
2019-06-19Merge pull request #28659 from KoBeWi/rainbow_modeRémi Verschelde
Add HSV mode to color picker
2019-06-19Merge pull request #29851 from akien-mga/doc-resourceRémi Verschelde
doc: Improve docs for Resource* classes
2019-06-18Merge pull request #29870 from Anutrix/docup1Rémi Verschelde
Added description to is_pixel_opaque() in Sprite.xml
2019-06-18doc: Improve docs for Resource* classesRémi Verschelde
Also move module-specific classes to their own module's `doc_classes` folder.
2019-06-18Unexpose subclasses of ResourceFormatLoader and -SaverRémi Verschelde
ResourceFormatLoader and ResourceFormatSaver are meant to be overridden to add support for different formats in ResourceLoader and ResourceSaver. Those should be exposed as they can be overridden in plugins. On the other hand, all predefined subclasses of those two base classes are only meant to register support for new file and resource types, but should not and cannot be used directly from script, so they should not be exposed. Also unexposed ResourceImporterOGGVorbis (and thus its base class ResourceImporter) which are editor-only.
2019-06-18Added description to is_pixel_opaque() in Sprite.xmlunknown
2019-06-18doc: Sync classref with current sourceRémi Verschelde
Fix a few bugs.
2019-06-18Merge pull request #29840 from Anutrix/masterRémi Verschelde
Added description in TranslationServer and OpenSimplexNoise
2019-06-18Merge pull request #29676 from zaksnet/ItemList-ImrovementsRémi Verschelde
Document ItemList control
2019-06-18Document ItemList controlZak
2019-06-17change emit shape circle to sphere in CPUParticles2Dclayjohn
2019-06-17Merge pull request #29752 from bruvzg/window_size_limitsRémi Verschelde
Add ability to limit maximum/minimum window size.