Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
進捗状況を元に戻す
Browse files Browse the repository at this point in the history
  • Loading branch information
calmery committed Feb 24, 2021
1 parent 6d381e6 commit e8f20bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Exhibition/3d.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const Exhibition3d: React.FC<{
}> = ({ creamsoda, multiplay, onComplete, settings }) => {
const defaultArea = creamsoda === "flower" ? "meadow" : "sea";

const [currentAreaName, setCurrentAreaName] = useState<AreaName>("cloud");
const [currentAreaName, setCurrentAreaName] = useState<AreaName>(defaultArea);
const area = areas[currentAreaName];
const [completed, setCompleted] = useState(false);

Expand Down
6 changes: 2 additions & 4 deletions src/pages/exhibition/experimental.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ import { Disease } from "~/utils/okusuri.land/types";
const Exhibition: NextPage = () => {
const { orientation } = useScreenOrientation();
const multiplay = useMultiplay();
const [creamsoda, setCreamsoda] = useState<"flower" | "water" | null>(
"water"
);
const [creamsoda, setCreamsoda] = useState<"flower" | "water" | null>(null);
const [diseases, setDiseases] = useState<Disease[]>([]);
const [location, setLocation] = useState<"2d-morning" | "2d-night" | "3d">(
"3d"
"2d-night"
);
const [graphicsQuality, setGraphicsQuality] = useState<GraphicsQuality>(
"high"
Expand Down

0 comments on commit e8f20bd

Please sign in to comment.