Skip to content

Commit

Permalink
feat(version): release 0.0.7 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Mar 27, 2024
1 parent 2d3894d commit d937c02
Show file tree
Hide file tree
Showing 3 changed files with 4 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-3d",
"version": "0.0.6",
"version": "0.0.7",
"private": true,
"dependencies": {
"@react-three/drei": "^9.74.11",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Machine3D/Machine3D.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default function Machine3D({ item }: IMachine3D) {
<group>
{/* Front Face */}
<Html
className="relative inset-0 flex h-full w-full flex-col items-center justify-center"
className="relative inset-0 flex h-full w-full flex-col items-center justifcony-center"
distanceFactor={1.5}
position={[0, 0.1, -0.301]}
transform
Expand Down
3 changes: 2 additions & 1 deletion src/contexts/BarcodeContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ export default ({ children }: any) => {
x: prevData[prevData.length - 1]?.waypoint?.x,
y: prevData[prevData.length - 1]?.waypoint?.y,
z: newBarcode.waypoint.z,
yaw: prevData[prevData.length - 1]?.waypoint?.yaw,
// yaw: prevData[prevData.length - 1]?.waypoint?.yaw,
yaw: prevData[0]?.waypoint?.yaw,
},
},
];
Expand Down

0 comments on commit d937c02

Please sign in to comment.