Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 frontend/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function RootLayout({
<link rel="apple-touch-icon" href="/renai_icon.png" />
<link
rel="preload"
href="/models/maki.vrm"
href="/models/hatisannomaki.vrm"
as="fetch"
crossOrigin="anonymous"
/>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/app/simulation/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default function SimulationPage() {
const avatarModelUrl = useMemo(() => {
if (selectedAvatar === "male") return "/models/rento.vrm";
if (selectedAvatar === "neutral") return "/models/kouta.vrm";
return "/models/maki.vrm"; // female
return "/models/hatisannomaki.vrm"; // female
}, [selectedAvatar]);

// 背景の保存/復元s
Expand Down Expand Up @@ -496,7 +496,7 @@ export default function SimulationPage() {
/>
</div>
<div className="absolute bottom-2 left-2 bg-black/50 text-white text-xs px-2 py-1 rounded">
女性アバター
養蜂コラボ!
</div>
</button>

Expand Down