Files
VRCT/src-ui/logics/common/useInitProgress.js
Sakamoto Shiina 70e411daf5 [Update] Add Starting Up Animation and downloading models progress display.
Backend: Move the init progressed position 4 to a little bit earlier.
2024-11-26 14:44:31 +09:00

10 lines
258 B
JavaScript

import { useStore_InitProgress } from "@store";
export const useInitProgress = () => {
const { currentInitProgress, updateInitProgress } = useStore_InitProgress();
return {
currentInitProgress,
updateInitProgress,
};
};