From 7ac7e5654492b7b87737de163d6462e704cfb282 Mon Sep 17 00:00:00 2001 From: hybridherbst Date: Mon, 18 Nov 2024 14:34:12 +0100 Subject: [PATCH] change default engine type to Babylon --- src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index c08ed95..499ca0c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,7 +8,7 @@ import {Tab, Tabs} from "react-bootstrap"; import {Spacer} from "./components/Spacer"; export const App = () => { - const [engineType, setEngineType] = useState(EngineType.LOGGING); + const [engineType, setEngineType] = useState(EngineType.BABYLON); const [behaveGraphFromGlTF, setBehaveGraphFromGlTF] = useState(null) const behaveGraphRef = useRef({}) @@ -35,7 +35,7 @@ interface EngineSelectorProps { } export const EngineSelector: React.FC = ({setEngineType}) => { - const [activeKey, setActiveKey] = useState('1'); + const [activeKey, setActiveKey] = useState('2'); const handleEngineChange = (key: any) => { let engine; switch (key) {