Skip to content

Commit

Permalink
style: 스네이크 케이스 카멜 케이스로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
chiabi committed Jul 24, 2024
1 parent 8a3b098 commit daaa7e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/ModelViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ const addDebugHelpers = (
camera,
});
});
const light_helper = new DirectionalLightHelper(lights.directionalLight, 5);
scene.add(light_helper);
const lightHelper = new DirectionalLightHelper(lights.directionalLight, 5);
scene.add(lightHelper);

const camera_helper = new CameraHelper(lights.directionalLight.shadow.camera);
scene.add(camera_helper);
const cameraHelper = new CameraHelper(lights.directionalLight.shadow.camera);
scene.add(cameraHelper);
};

interface ModelViewerProps {
Expand Down

0 comments on commit daaa7e7

Please sign in to comment.