summaryrefslogtreecommitdiffstats
path: root/doc/classes/CollisionObject2D.xml
Commit message (Collapse)AuthorAgeFilesLines
* Validate `code` tags for class and member referencesYuri Sizov2023-10-031-1/+1
| | | | | | | | This commit also adds means to manually disable warnings in `code` tags where it's a false positive with the new `skip-lint` attribute. Warnings are now enabled on CI to prevent future errors.
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Overhaul the top sections of the class reference (Physics classes)VolTer2023-05-201-2/+2
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Use capitalized ID in the docHaoyu Qiu2022-12-081-2/+2
|
* Expose input interaction virtual functions in CollisionObjectrafallus2022-08-291-0/+26
|
* Replace Array return types with TypedArraykobewi2022-08-221-1/+1
|
* Add collision weight to PhysicsBody for penetrations must be avoidedSilc Renew2022-08-181-0/+3
| | | | Co-authored-by: Juan Linietsky <reduzio@gmail.com>
* [doc] Use "param" instead of "code" to refer to parameters (7)Andy Maloney2022-08-121-10/+10
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-40/+40
|
* Improve CollisionObject2D and CollisionObject3D pickable documentationHugo Locurcio2022-04-291-2/+5
|
* Add a note about collisions in different canvases.Markus Sauermann2022-04-081-0/+1
|
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* Fix `input_ray_pickable` documentation for `CollisionObject3D`rafallus2022-01-181-1/+1
|
* Replace Godot docs URL with `$DOCS_URL` in XML class referenceRémi Verschelde2021-11-151-2/+2
|
* Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz2021-08-231-1/+1
| | | | | | | | * `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now.
* Uniformize layer names, script methods and documentationPouleyKetchoupp2021-08-121-14/+12
| | | | | | | - Back to 1-based layer names to make it clearer in editor UI - Layer bit accessors are renamed to layer value and 1-based too - Uniform errors and documentation in render and physics - Fix a few remaining collision_layer used in place of collision_mask
* Merge pull request #50625 from nekomatata/body-one-direction-layersRémi Verschelde2021-07-311-2/+2
|\ | | | | One-directional collision layer check for rigid bodies and soft bodies
| * One-directional collision layer check for rigid bodies and soft bodiesPouleyKetchoupp2021-07-191-2/+2
| | | | | | | | | | | | | | | | Check for each body individually if it collides with the other one or ignores it. When a body is being ignored, the other body's mass is considered infinite when applying impulses to avoid extra overlapping.
* | doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-130/+65
| | | | | | | | | | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* | Fix typo in CollisionObject documentationRaul Santos2021-07-241-4/+4
|/
* Merge pull request #47395 from sygi/shape_idx_collisionHugo Locurcio2021-07-161-2/+16
|\ | | | | Add shape_idx to CollisionObject2D mouse_entered signal
| * Add mouse_shape_entered and mouse_shape_exited signals to CollisionObject2D.sygi2021-07-021-2/+16
| | | | | | | | Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
* | Add support for controlling physics nodes' behavior when disabledPouleyKetchoupp2021-06-301-0/+14
| | | | | | | | | | | | | | | | | | | | | | New property disable_mode to set different behaviors: Remove: remove from physics simulation MakeStatic: change body mode to static (doesn't affect area and soft body) KeepActive: do nothing Extra change: Handle disable/enable node state with specific notifications, in order to differentiate global pause from disabled nodes.
* | doc: Sync classref with current sourceRémi Verschelde2021-04-291-9/+9
| | | | | | | | And typo fix from https://github.com/godotengine/godot-docs/pull/4882.
* | Move collision layer and mask into CollisionObject.Marcel Admiraal2021-04-201-0/+50
|/
* Revert "Allow Area2D and 3D mouse events without a collision layer"Rémi Verschelde2020-07-271-4/+4
| | | | This reverts commit 7eebb06b5571437828d8c5099558c303c72cd1f4.
* doc: Sync classref with current sourceRémi Verschelde2020-07-151-1/+1
|
* Allow Area2D and 3D mouse events without a collision layerTomasz Chabora2020-07-101-5/+5
| | | | Co-authored-by: madmiraal <madmiraal@users.noreply.github.com>
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* Complete documentation of some more classesTomasz Chabora2020-01-141-0/+2
|
* Documents the need for input_pickable in _input_eventFlamyAT2019-07-221-4/+4
| | | | | | Update CollisionObject2D.xml Added member tags to missing docs
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-1/+1
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Document CollisionObject2D pickable requires collision_layerlopho2019-05-021-4/+4
| | | Documents CollisionObject2D mouse_entered, mouse_exited and input_event requiring at least one collision_layer to be set.
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* Merge pull request #27465 from ↵Rémi Verschelde2019-04-051-2/+2
|\ | | | | | | | | neikeq/road-to-lang-agnostic-docs-is-going-to-be-tough EditorHelp: Improve enum ref resolving and add constant ref support
| * ClassRef: Replace [code]CurrentClass[/code] with [CurrentClass]Ignacio Etcheverry2019-03-291-2/+2
| | | | | | | | Modified makerst to generate code tags for these to avoid hyperlinks to the same class.
* | doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|/
* doc: Sync classref with current sourceRémi Verschelde2019-01-261-0/+18
|
* doc: Add missing commas after "If true/false"Rémi Verschelde2018-12-201-3/+3
|
* Improve ClassDB information for some some signal parametersKelly Thomas2018-09-011-1/+1
|
* update class docsKelly Thomas2018-08-311-1/+1
|
* doc: Remove status from hardcoded version stringRémi Verschelde2018-02-271-1/+1
| | | | It has no practical use case and just generates noise for each alpha, beta, etc.
* doc: Update version string in headerRémi Verschelde2018-02-191-1/+1
|
* doc: Sync with current sourceRémi Verschelde2018-01-251-1/+1
| | | | | | 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: Update version string in XMLRémi Verschelde2018-01-131-1/+1
|
* [DOCS] CanvasItem/Material/Layer, ClassDB, CollisionObject(2D)Will Nations2017-12-071-1/+5
|
* doc: Remove setters and getters now exposed via properties/membersRémi Verschelde2017-11-241-16/+0
|