Skip to content

Commit

Permalink
Gridfollow rotation fix. Better defaults
Browse files Browse the repository at this point in the history
[CI BUILD]
  • Loading branch information
andybak committed Jan 4, 2024
1 parent d90e8d2 commit 29a8160
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -4,8 +4,8 @@ Settings = {
}

Parameters = {
speed={label="Speed", type="float", min=0.01, max=.25, default=.05},
framesBetweenChanges={label="Number of frames between direction changes", type="int", min=0, max=20, default=5},
speed={label="Speed", type="float", min=0.01, max=.1, default=.025},
framesBetweenChanges={label="Number of frames between direction changes", type="int", min=1, max=20, default=10},
}

function Main()
Expand All @@ -14,7 +14,6 @@ function Main()

--Store the brush transform at the moment we start drawing a line
currentPosition = Brush.position
currentRotation = Brush.rotation
vector = Vector3.zero
framesSinceChange = 0

Expand Down

0 comments on commit 29a8160

Please sign in to comment.