summaryrefslogtreecommitdiffstats
path: root/doc/classes/CharacterBody2D.xml
Commit message (Collapse)AuthorAgeFilesLines
* Clean up more `[b]Example:[/b]` lines from the class referenceMicky2024-11-111-1/+1
|
* Surface normal is not correctGamepro52024-04-091-2/+4
|
* Update links to outdated asset library demosskyace652024-04-071-2/+2
| | | | | | Update links to outdated asset library demos Co-authored-by: Max Hilbrunner <m.hilbrunner@gmail.com>
* Validate `code` tags for class and member referencesYuri Sizov2023-10-031-2/+2
| | | | | | | | 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-4/+3
|
* Fix CharacterBody2D get_slide_collision docsBrett Chalupa2023-03-101-2/+2
| | | | The indentation was off and the code usage was incorrect for Godot 4.0 GDScript.
* Merge pull request #73749 from fabriceci/expose-apply-floor-snapRémi Verschelde2023-03-031-1/+7
|\ | | | | | | Exposes the apply_floor_snap function to allow manual snap
| * Exposes the apply_floor_snap function to allow a snap to be made regardless ↵fabriceci2023-02-221-1/+7
| | | | | | | | of velocity.
* | Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
|/ | | | Can't stop, won't stop, they said, huh?
* fixed c# example in CharacterBody2D docconstantitus2023-02-131-2/+2
|
* fix "unknown document" classref linksHana2022-11-141-1/+1
|
* Style: Misc docs and comment style and language fixesRémi Verschelde2022-11-021-1/+1
| | | | | | | | | | - Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`.
* Restore RigidBody2/3D, SoftBody names in physicsfabriceci2022-08-261-1/+1
|
* Shorten variable names for moving platforms in CharacterBodyfabriceci2022-08-251-8/+8
|
* Rename properties unnecessarily using slash (`/`) in their namesRémi Verschelde2022-08-231-6/+6
| | | | | | | | | This is a legacy of Godot 2 days before the inspector had support for groups. "Properties" with a slash in their name can't be accessed from script unless using `set()`/`get()` so they were not actual properties as far as script languages are concerned. Part of #17558.
* [doc] Use "param" instead of "code" to refer to parameters (7)Andy Maloney2022-08-121-1/+1
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-2/+2
|
* Fix up direction doc descriptionfabriceci2022-04-091-1/+1
|
* Rename motion_velocity to velocityChris Bradfield2022-02-221-9/+9
|
* Updated out of date CharacterBody documentation.Hannah Crawford2022-02-171-1/+0
|
* 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.
* rename free mode to floating modefabriceci2022-01-241-4/+4
|
* Expand description of is_on_X methods for CharacterBody2D/3Dzacryol2022-01-091-6/+6
| | | | | Clarifies in the description for each method that the `up_direction` and `floor_max_angle` properties are used to determine the status of a collided surface.
* i18n: Sync classref translations with current 3.x codebaseRémi Verschelde2022-01-071-3/+3
| | | | (cherry picked from commit defb8011200f3ff908dd432cdbc095e4665677ef)
* Replace Godot docs URL with `$DOCS_URL` in XML class referenceRémi Verschelde2021-11-151-2/+2
|
* Add latest changes added in the 3D versionfabriceci2021-09-301-6/+43
|
* Set stop on slope on by default on CharacterBody.fabriceci2021-09-281-1/+1
|
* Improved logic for CharacterBody collision recovery depthPouleyKetchoupp2021-09-271-1/+1
| | | | | | | | | | | | | | | | Allows 2D character controller to work without applying gravity when touching the ground (also more safely in 3D), and collision detection is more flexible with different safe margin values. Character body motion changes in 2D and 3D: -Recovery only for depth > min contact depth to help with collision detection consistency (rest info could be lost if recovery was too much) -Adaptive min contact depth (based on margin) instead of space parameter Extra CharacterBody changes: -2D: apply changes made in 3D for stop on slope and floor snap that help fixing some jittering cases -3D: fix minor inconsistencies in stop on slope and floor snap logic
* Port 2D improvement to move and slide 3Dfabriceci2021-09-221-1/+1
| | | | Co-authored-by: Camille Mohr-Daurat <pouleyketchoup@gmail.com>
* Rename RigidBody to RigidDynamicBody and SoftBody to SoftDynamicBodyPouleyKetchoupp2021-09-161-1/+1
|
* Add AnimatableBody inherited from StaticBody for moving platformsPouleyKetchoupp2021-08-311-4/+4
| | | | | | | | | | | | | Instead of having a physics node named Static that can be either Static or Kinematic, AnimatableBody is added again as a separate node: -Inherited from StaticBody to make its usage clearer -Still separated from CharacterBody to make its usage more focused Properly implemented constant velocity for kinematic bodies in godot physics servers (induced velocity without actually moving). Also updated description for the different physics nodes to make their usage clearer.
* Change platform detection by allowing select layers by type (wall or floor)fabriceci2021-08-311-2/+5
|
* add motion mode to handle TPSfabriceci2021-08-201-0/+13
|
* API improvement on physics, mainly CharacterBodyfabriceci2021-08-151-15/+29
| | | | | | | | | | | | Changes: - Rename few methods/property and group them in the editor when it's possible - Make MotionResult API consistency with KinematicCollision - Return a boolean in move_and_slide if there was a collision - New methods: - get_floor_angle on CharacterBody to get the floor angle. - get_angle on KinematicCollision to get the collision angle. - get_last_slide_collision to quickly get the latest collision of move_and_slide.
* Remove infinite inertia and ray shapes from CharacterBodyPouleyKetchoupp2021-08-101-3/+0
| | | | | | | | | | | Infinite inertia: Not needed anymore, since it's now possible to set one-directional collision layers in order for characters to ignore rigid bodies, while rigid bodies still collide with characters. Ray shapes: They were introduced as a work around to allow constant speed on slopes, which is now possible with the new property in CharacterBody instead.
* Add properties to CharacterBody for more move_and_slide optionsfabriceci2021-08-101-5/+36
|
* Fix 3D moving platform logicPouleyKetchoupp2021-08-091-0/+1
| | | | | | | | | | | | | Same thing that was already done in 2D, applies moving platform motion by using a call to move_and_collide that excludes the platform itself, instead of making it part of the body motion. Helps with handling walls and slopes correctly when the character walks on the moving platform. Also made some minor adjustments to the 2D version and documentation. Co-authored-by: fabriceci <fabricecipolla@gmail.com>
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-18/+9
| | | | | | | | 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.
* Move sync to physics to StaticBody2DPouleyKetchoupp2021-07-151-3/+0
| | | | | | | | | Now static body is used for moving platforms through kinematic motion property, so sync to physics needs to be in StaticBody2D instead of CharacterBody2D. Constant kinematic motion is also supported in combination with sync to physics for smoother movements.
* Fix editor suffixes and degrees conversionreduz2021-06-301-3/+0
| | | | | | | | | | | | | * Functions to convert to/from degrees are all gone. Conversion is done by the editor. * Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees. * Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m" * In general, can add suffixes for EditorSpinSlider Not covered by this PR, will have to be addressed by future ones: * Ability to switch radians/degrees in the inspector for angle properties (if actually wanted). * Animations previously made will most likely break, need to add a way to make old ones compatible. * Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes. * Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
* Better format arguments in variant parserMichael Alexsander Silva Dias2021-06-181-3/+3
|
* Use degrees instead of rad for floor_max_angle property in CharacterBodyPouleyKetchoupp2021-06-081-0/+3
|
* Linear velocity cleanupPouleyKetchoupp2021-06-041-6/+6
| | | | | | | | CharacterBody has a linear_velocity property to replace the argument in move_and_slide. StaticBody handles reporting linear/angular velocity correctly when kinematic motion is used (in 3D, used in vehicle and navigation).
* Safe margin cleanupPouleyKetchoupp2021-06-041-0/+6
| | | | | | | | Safe margin property on CharacterBody only, used as argument in move_and_collide. Removed kinematic_safe_margin in 3D physics server, not really useful and now harmonized with 2D.
* Support for kinematic_motion in StaticBodyPouleyKetchoupp2021-06-041-2/+2
| | | | | | | | | | | Does the same thing as simulate motion from RigidBody in Kinematic mode, and CharacterBody (previously KinematicBody). Added support for constant linear/angular velocity with kinematic_motion in StaticBody, which moves the body in physics. Updated documentation for StaticBody and CharacterBody to describe their functionalities more accurately.
* More explanatory names for RigidBody modesPouleyKetchoupp2021-06-041-1/+1
| | | | | | | | | MODE_DYNAMIC instead of MODE_RIGID MODE_DYNAMIC_LOCKED instead of MODE_CHARACTER No more special case for sleeping behavior for MODE_DYNAMIC_LOCKED (MODE_CHARACTER was forcing the body not to sleep, which is redundant with can_sleep and wasn't done in Bullet).
* Properties for move_and_slide and remove move_and_slide_with_snapPouleyKetchoupp2021-06-041-44/+26
| | | | | | | - snap property to replace move_and_slide_with_snap() - floor_max_angle, stop_on_slope, infinite_inertia, max_slides, up_direction properties to replace arguments from move_and_slide() - up direction now defaults to Vector3.UP and Vector2.UP
* KinematicBody split between new CharacterBody and PhysicsBodyPouleyKetchoupp2021-06-041-0/+141
PhysicsBody now has methods move_and_collide/test_move and needed properties for these methods: safe margin, locked axes (3D only). Moved collision_exceptions from StaticBody to PhysicsBody for 3D (same as 2D, and conforms to documentation). RigidBody doesn't have test_motion method anymore, it's now redundant with PhysicsBody.test_move.