Skip to content

Commit

Permalink
Change default values
Browse files Browse the repository at this point in the history
  • Loading branch information
keupoz committed Jan 22, 2024
1 parent cc7519d commit 0da1caa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stores/SceneSettingsStore.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { atomWithStorage } from "jotai/utils";

export const showGridAtom = atomWithStorage("dice-show-grid", true);
export const smoothCameraAtom = atomWithStorage("dice-smooth-camera", false);
export const baseOpacityAtom = atomWithStorage("dice-base-opacity", 1);
export const smoothCameraAtom = atomWithStorage("dice-smooth-camera", true);
export const baseOpacityAtom = atomWithStorage("dice-base-opacity", 0.9);

0 comments on commit 0da1caa

Please sign in to comment.