Skip to content

Commit

Permalink
Merge pull request #79922 from Auburn/cellular-jitter-fix
Browse files Browse the repository at this point in the history
FastNoiseLite: Fix cellular jitter using incorrect default value
  • Loading branch information
akien-mga committed Aug 17, 2023
2 parents 5aaaf76 + 8649ab8 commit 4332a79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/noise/doc_classes/FastNoiseLite.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<member name="cellular_distance_function" type="int" setter="set_cellular_distance_function" getter="get_cellular_distance_function" enum="FastNoiseLite.CellularDistanceFunction" default="0">
Determines how the distance to the nearest/second-nearest point is computed. See [enum CellularDistanceFunction] for options.
</member>
<member name="cellular_jitter" type="float" setter="set_cellular_jitter" getter="get_cellular_jitter" default="0.45">
<member name="cellular_jitter" type="float" setter="set_cellular_jitter" getter="get_cellular_jitter" default="1.0">
Maximum distance a point can move off of its grid position. Set to [code]0[/code] for an even grid.
</member>
<member name="cellular_return_type" type="int" setter="set_cellular_return_type" getter="get_cellular_return_type" enum="FastNoiseLite.CellularReturnType" default="1">
Expand Down
2 changes: 1 addition & 1 deletion modules/noise/fastnoise_lite.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class FastNoiseLite : public Noise {
// Cellular specific.
CellularDistanceFunction cellular_distance_function = DISTANCE_EUCLIDEAN;
CellularReturnType cellular_return_type = RETURN_DISTANCE;
real_t cellular_jitter = 0.45;
real_t cellular_jitter = 1.0;

// Domain warp specific.
bool domain_warp_enabled = false;
Expand Down

0 comments on commit 4332a79

Please sign in to comment.