TIA / holo3d /ui /render.ts
DJ-Goanna-Coding's picture
Upload folder using huggingface_hub
fa3ed75 verified
raw
history blame contribute delete
131 Bytes
import { updatePanel } from "./panel";
export function startRenderLoop() {
setInterval(() => {
updatePanel();
}, 1000);
}