diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-10-25 10:58:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-25 10:58:01 +0200 |
commit | 11be39f3cee6429a927c669f420ab98d36c92546 (patch) | |
tree | be89f93ff4e6c96e3e874fd6d17e8127dd1b053d | |
parent | 66bdd0ed7e49a5be1fc438354266ef76d2443ba1 (diff) | |
parent | 1c7344391579ba5d71e71352560dd2b85c830244 (diff) |
Merge pull request #23221 from pgruenbacher/lookahead_docs
added docs for lookeahead pathfollow2d.xml
-rw-r--r-- | doc/classes/PathFollow2D.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/PathFollow2D.xml b/doc/classes/PathFollow2D.xml index f9940dab2f..515c921d0d 100644 --- a/doc/classes/PathFollow2D.xml +++ b/doc/classes/PathFollow2D.xml @@ -23,6 +23,7 @@ The node's offset along the curve. </member> <member name="lookahead" type="float" setter="set_lookahead" getter="get_lookahead"> + How far to look ahead of the curve to calculate the tangent if the node is rotating. E.g. shorter lookaheads will lead to faster rotations. Default value: [code]4[/code]. </member> <member name="loop" type="bool" setter="set_loop" getter="has_loop"> If [code]true[/code], any offset outside the path's length will wrap around, instead of stopping at the ends. Use it for cyclic paths. |