Skip to content

Commit

Permalink
🥕 v0.16.1-b2 🌱 ThreeD: Character Animations
Browse files Browse the repository at this point in the history
  • Loading branch information
marty-mcgee committed Oct 3, 2024
1 parent bd2c394 commit 0affdc5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/threed/components/controls/LevaControls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ export function ThreeDLevaControls() {
// hideTitleBar={true} // default = false. true hides the GUI header
theme={theme} // you can pass a custom theme (see the styling section)
collapsed={false} // default = false. true makes the GUI collapsed to start
fill={true} // default = false. true makes the pane fill the parent dom node it's rendered in
fill={false} // default = false. true makes the pane fill the parent dom node it's rendered in
flat={true} // default = false. true removes border radius and shadow
hidden={false} // default = false. true hides the GUI
neverHide={true} // default = true. false allows hiding of the GUI
Expand Down
5 changes: 4 additions & 1 deletion src/lib/threed/components/controls/Toolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1102,7 +1102,10 @@ const ThreeDToolbar: FC = (): React.ReactNode => {
</Box>

<Box
sx={{ flexGrow: 0 }} // , display: { xs: 'none', md: 'flex' }
sx={{
display: 'none', // , display: { xs: 'none', md: 'flex' }
flexGrow: 0
}}
>
<Tooltip title='Pointer Tool'>
<IconButton
Expand Down

1 comment on commit 0affdc5

@vercel
Copy link

@vercel vercel bot commented on 0affdc5 Oct 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.