Skip to content

Commit

Permalink
chore: 🔧 Update default points size to avoid some lighting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
TeddyHuang-00 committed Feb 18, 2024
1 parent 8a7f014 commit a8df982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composables/useStates.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const useTimeSpeed = () => useState("timeSpeed", () => 0.2);
export const useInitialRange = () => useState("initialRange", () => 1);
export const usePointNumber = () => useState("pointNumber", () => 10_000);
export const usePointSize = () => useState("pointSize", () => 0.25);
export const usePointSize = () => useState("pointSize", () => 0.5);
export const useAttractorSelection = () =>
useState("attractorSelection", () => "lorenz" as nameAttractor);

0 comments on commit a8df982

Please sign in to comment.