Skip to content

Commit

Permalink
change default engine type to Babylon
Browse files Browse the repository at this point in the history
  • Loading branch information
hybridherbst committed Nov 18, 2024
1 parent f65dc91 commit 7ac7e56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {Tab, Tabs} from "react-bootstrap";
import {Spacer} from "./components/Spacer";

export const App = () => {
const [engineType, setEngineType] = useState<EngineType>(EngineType.LOGGING);
const [engineType, setEngineType] = useState<EngineType>(EngineType.BABYLON);
const [behaveGraphFromGlTF, setBehaveGraphFromGlTF] = useState<null | string>(null)
const behaveGraphRef = useRef<any>({})

Expand All @@ -35,7 +35,7 @@ interface EngineSelectorProps {
}

export const EngineSelector: React.FC<EngineSelectorProps> = ({setEngineType}) => {
const [activeKey, setActiveKey] = useState('1');
const [activeKey, setActiveKey] = useState('2');
const handleEngineChange = (key: any) => {
let engine;
switch (key) {
Expand Down

0 comments on commit 7ac7e56

Please sign in to comment.