From 56d755ec0686dab6a72ad3db8785540195784c98 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Fri, 7 Jun 2019 10:51:12 +0800 Subject: [PATCH] update doc --- docs/lib-along_with.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/lib-along_with.md b/docs/lib-along_with.md index 8b05761f..00530d01 100644 --- a/docs/lib-along_with.md +++ b/docs/lib-along_with.md @@ -5,9 +5,10 @@ Puts children along the given path. If there's only one child, it will put the c ## Parameters - `points` : The points along the path. -- `angles` : Rotate before translate each child. If not given, rotate children automatically according to `points`. +- `angles` : Rotate before translate each child. If not given, rotate children automatically according to `points` and `method`. - `twist` : If given, each child will be twisted before applying each element of `points` and `angles`. - `scale` : If given, each child will be scaled before applying each element of `points` and `angles`. It accepts a single value, `[sx, sy]` or `[sx, sy, sz]`. +- `method` : Which method does `along_with` take to **guess** how to rotate children if `angles` is not specified? It accepts two value, `"AXIS_ANGLE"` (default) and `"EULER_ANGLE"`. See `path_extrude` for more information. **Since:** 1.3. ## Examples