🔧 Makes default visualization be spot micro

This commit is contained in:
Rune Harlyk
2025-07-10 22:32:27 +02:00
parent 90be771211
commit a3de13c619
+2 -2
View File
@@ -10,7 +10,7 @@ let model_xml: XMLDocument
export const populateModelCache = async () => {
await cacheModelFiles()
const modelRes = await loadModel('/yertle.URDF')
const modelRes = await loadModel('/spot_micro.urdf.xacro')
if (modelRes.isOk()) {
const [urdf, JOINT_NAME] = modelRes.inner
jointNames.set(JOINT_NAME)
@@ -21,7 +21,7 @@ export const populateModelCache = async () => {
}
export const cacheModelFiles = async () => {
const data = await fetch('/URDF.zip')
const data = await fetch('/stl.zip')
const files = uzip.parse(await data.arrayBuffer())