mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-01-19 20:25:01 +00:00
11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
import { ConsoleObject } from "@/src/mission";
|
|
|
|
export function WaterBlock({ object }: { object: ConsoleObject }) {
|
|
return (
|
|
<mesh>
|
|
<boxGeometry />
|
|
<meshStandardMaterial color="blue" transparent opacity={0.5} />
|
|
</mesh>
|
|
);
|
|
}
|