Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(react-components): Improve Scene home camera button and bump to 0.55.2 #4695

Merged

Conversation

anders-hopland
Copy link
Contributor

Type of change

Feat

Description 📝

Improves Scene home camera position.

  • If default camera position is not provided, use a default if no models are present, of not, fit to models
  • Fixes bug where rotation was not calculated correctly when rotating camera instead of providing camera target

How has this been tested? 🔍

Have built the package locally and tested it in Fusion

Test instructions ℹ️

Build locally and use in Fusion. Verify that Scene home camera is correct

Checklist ☑️

  • I am proud of this feature.
  • I have performed a self-review of my own code.
  • I have added PR type (Feat, Bug, Chore, Test, Docs, Style, Refactor) to the PR title.
  • I have manually tested this for different scenarios (different models, formats, devices, browsers).
  • I have commented my code in hard-to-understand areas.
  • I have made corresponding changes to the public documentation.
  • I have added unit and visuals tests to prove that my feature works to the best of my ability.
  • I have refactored the code for readability to the best of my ability.
  • I have checked that my changes do not introduce regressions in the public documentation.
  • I have outlined any known defects / lacking capabilities in the contents of this PR.
  • I have listed any remaining work that should follow this PR in the description or jira/miro/etc.
  • I have added TSDoc to any public facing changes.
  • I have added "developer documentation" in any package README.md that is related / applicable to this PR.
  • I have noted down and am currently tracking any technical debt introduced in this PR.
  • I have thoroughly thought about the architecture of this implementation.
  • I have asked peers to test this feature.

return position
.clone()
.add(new Vector3(0, 0, -positionToSceneCenterDistance).applyQuaternion(rotation));
return position.clone().add(new Vector3(0, 0, -50).applyQuaternion(rotation));
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Models are not neccesarily loaded, will thus often have the wrong bounding box. Using a constant for distance to target instead

@greenbech greenbech changed the title Improve scene home camera fix(react-components): Scene home camera button Aug 6, 2024
@@ -32,13 +32,42 @@ export const useSceneDefaultCamera = (
};
}

const cameraNotSet =
Copy link
Contributor

Choose a reason for hiding this comment

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

Boolean values should be prefix with is, should or has in my opinion

Copy link
Contributor

Choose a reason for hiding this comment

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

Usually, I would also prefer them to be positive. In this case, I would go for isCameraSet

@anders-hopland anders-hopland changed the title fix(react-components): Scene home camera button fix(react-components): Improve Scene home camera buttonand bump to 0.55.2 Aug 6, 2024
Copy link
Contributor

@greenbech greenbech left a comment

Choose a reason for hiding this comment

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

This seems to work!

@anders-hopland anders-hopland changed the title fix(react-components): Improve Scene home camera buttonand bump to 0.55.2 fix(react-components): Improve Scene home camera button and bump to 0.55.2 Aug 6, 2024
@anders-hopland anders-hopland enabled auto-merge (squash) August 6, 2024 11:38
@anders-hopland anders-hopland merged commit 1e1fc90 into master Aug 6, 2024
14 checks passed
@anders-hopland anders-hopland deleted the amh/react-components-improve-scene-home-camera branch August 6, 2024 11:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants