Skip to content

Commit

Permalink
fix: add missing backing field
Browse files Browse the repository at this point in the history
  • Loading branch information
andywiecko committed Sep 26, 2024
1 parent 7130ed0 commit 3e2bc38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/Triangulator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public class TriangulationSettings
[field: SerializeField]
public bool AutoHolesAndBoundary { get; set; } = false;
[field: SerializeField]
public RefinementThresholds RefinementThresholds { get; } = new();
public RefinementThresholds RefinementThresholds { get; private set; } = new();
/// <summary>
/// If <see langword="true"/> refines mesh using
/// <see href="https://en.wikipedia.org/wiki/Delaunay_refinement#Ruppert's_algorithm">Ruppert's algorithm</see>.
Expand Down

0 comments on commit 3e2bc38

Please sign in to comment.