Vector3
A utility identical to THREE.Vector3 so you don't have to BYO.
See three.js docs for more info.
import React from "react";
import { Vector3 } from "hyperfy";
export default function App() {
const vec3 = new Vector3().fromArray([0, 100, 0]);
console.log(vec3);
return <app />;
}