summaryrefslogtreecommitdiffstats
path: root/doc/classes/PathFollow3D.xml
Commit message (Collapse)AuthorAgeFilesLines
* Add error checks for bad configuration in `PathFollow2D/3D` `set_progress_ratio`Guillaume Turri2024-09-041-0/+1
| | | | | | | | | | | | When a PathFollow is badly configured it's possible to have code that call get_progress_ratio just after set_progress_ratio does not return the value just set, which may be confusing for developer (ie that myPathFollow2D.set_progress_ratio(0.5) myPathFollow2D.get_progress_ratio() does not return 0.5) This commit makes ensures the developer has useful error messages in such case, to make it easier to troubleshot it.
* 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'
* Fix Pathfollow directionSilc Renew2023-05-241-0/+3
| | | | Co-authored-by: aaronfranke <arnfranke@yahoo.com>
* Validate code tags in documentation for potential paramsYuri Sizov2023-04-261-1/+1
| | | | | | | Adds a check to make_rst to look for matches between the text inside of the [code][/code] tag and known param identifiers. Fixes most of what was revealed.
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Fix typos with codespellRémi Verschelde2022-12-151-1/+1
|
* Refactor Curv3D and PathFollow3DYaohua Xiong2022-11-121-0/+13
| | | | | | | | | | This commit makes the following major changes 1. Add "sample_baked_with_rotation()" to Curve3D, making it usable independently. A similar change was made to Curve2D previously. 2. Refactor the _bake() method on Curve3D, using Parallel Transport Frame instead of Frenet Frame. 3. Refactor the sample_* methods, including: i. Factor out common binary search code, following the DRY principe ii. sample_up_vector() interpolated up vector as part of rotation frame(posture) for consistancy and accuracy.
* Rename PathFollow's `offset`s to `progress` & `progress_ratio`Micky2022-08-241-6/+6
| | | | Applies for both PathFollow2D and PathFollow3D
* 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.
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-2/+0
|
* doc: Update classref with node renamesRémi Verschelde2020-03-301-0/+56
A few extra renames for classes which were missed in last week's PRs.