Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Canvas #44

Merged
merged 7 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"ignorePaths": ["node_modules/**", "*.svg"],
"version": "0.2",
"language": "en",
"words": ["NATSUMATSURI", "yatai", "Dela", "Yuji", "Syuku", "zustand", "wadaiko", "qrcode","nobori","Garally","natsu","matsuri"]
"words": ["NATSUMATSURI", "yatai", "Dela", "Yuji", "Syuku", "zustand", "wadaiko", "qrcode","nobori","Garelly","natsu","matsuri"]
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

garellyはちゃんとした(?)単語なのでホワイトリストに入れなくても良いと思います

}
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
import styles from "./index.module.css";

function Garally() {
function Garelly() {
return (
<div>
{/* biome-ignore lint/a11y/useMediaCaption: <explanation> */}
<audio src="/sound/natsu_matsuri.mp3" autoPlay loop />
{/* biome-ignore lint/a11y/useMediaCaption: 夏祭りの音を再生します。 */}
<audio
src="/sound/natsu_matsuri.mp3"
autoPlay
loop
aria-label="夏祭りの音"
/>
<h1 className={styles.title}>VIRTUAL_NATSUMATSURI</h1>
<div className={styles.nobori}>
<img src="/2D_material/nobori.webp" alt="夏祭り_のぼり" />
Expand All @@ -24,4 +29,4 @@ function Garally() {
</div>
);
}
export default Garally;
export default Garelly;
4 changes: 2 additions & 2 deletions src/pages/yatai/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type {
Object3DEventMap,
} from "three";
import { randFloat } from "three/src/math/MathUtils.js";
import Garally from "../../components/Garally";
import Garelly from "../../components/Garelly";
import { useSocketRefStore } from "../../store";
import {
type ActionSchema,
Expand Down Expand Up @@ -217,7 +217,7 @@ function Yatai() {
<div className={styles.container}>
<YataiStage />
<TargetOverlay />
<Garally />
<Garelly />
</div>
);
}
Expand Down