Skip to content

Commit

Permalink
feat(version): release 0.28.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Jan 10, 2024
1 parent a73260f commit ca60556
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.27.9",
"version": "0.28.0",
"private": true,
"scripts": {
"dev": "react-scripts start",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Machine3D/Machine3D.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ export default function Machine3D({ item }: IMachine3D) {
onPointerEnter={() => !hovered && setHovered(true)}
onPointerLeave={() => hovered && setHovered(false)}
scale={1}
position={[item?.waypoint?.y, item?.waypoint?.z, item?.waypoint?.x]}
position={[item?.waypoint?.y, item?.waypoint?.z + 0.5, item?.waypoint?.x]}
rotation={[0, item?.waypoint?.z || 0, 0]}
>
<boxBufferGeometry args={[0.75, 0.75, 0.75]} />
<boxBufferGeometry args={[1, 1, 1]} />
<meshNormalMaterial />
{hovered && (
<group>
Expand Down

0 comments on commit ca60556

Please sign in to comment.