-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: index redesign #53
Changes from all commits
3e4113a
6a74c0b
6b36e5a
21170f8
6e14bb1
a51e407
7ec86fe
00096e6
9838cfa
403c507
b2e83eb
2e6dc2a
0022176
f37b8b8
18e8c79
67f1c6f
97133aa
e6a636b
3d806db
0231997
79adbed
43c7c70
0fb6fd9
aca61bc
82d0249
652c6dc
d9ae734
907ca05
87d0aed
140ae37
3e0319a
4890662
5ec8dca
f6b770d
a895bc1
8169ac5
2020ec6
c0d91d1
4bb66c8
e64daf7
2e1ca38
0f6f93c
1602841
21c79f1
da314f0
b6e6e0c
9654038
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Model Information: | ||
* title: Lost robot | ||
* source: https://sketchfab.com/3d-models/lost-robot-5a5c314a82864818a3fa5a0f71b17990 | ||
* author: Mikita_Hubanau (https://sketchfab.com/Mikita_Hubanau) | ||
|
||
Model License: | ||
* license type: CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/) | ||
* requirements: Author must be credited. Commercial use is allowed. | ||
|
||
If you use this 3D model in your project be sure to copy paste this credit wherever you share it: | ||
This work is based on "Lost robot" (https://sketchfab.com/3d-models/lost-robot-5a5c314a82864818a3fa5a0f71b17990) by Mikita_Hubanau (https://sketchfab.com/Mikita_Hubanau) licensed under CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code patch you provided is not a code itself, but rather a text snippet containing model information and license details for a 3D model called "Lost robot." It appears to be a documentation or attribution statement related to the usage of that particular 3D model in a project. As it is not code, there are no bug risks or improvement suggestions to provide. The information provided in the code patch seems to be correctly formatted and provides the necessary details about the model, its source, author, and the license under which it is distributed. The included URL links allow users to access the model and the licensing terms. If this code patch is intended to be part of your project's codebase, ensure that you include it appropriately within the project's documentation or metadata files rather than incorporating it into the actual program code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Based on the provided code patch, here's a brief code review:
Addition of "@react-three/postprocessing" package: The patch adds the "@react-three/postprocessing" package with version "^2.15.1". This introduces post-processing capabilities to your React Three.js application.
Addition of "prop-types" package: The patch adds the "prop-types" package with version "15.6.0". This is used for runtime type checking of React props. Note that starting from React v15.5, prop types are imported from the separate "prop-types" package.
Addition of "react-is" package: The patch adds the "react-is" package with version "16.8.0". This package provides the implementation of React's "isXXX" functions used for element type checking.
Addition of "react-postprocessing" package: The patch adds the "react-postprocessing" package with version "^1.4.0". This is another package related to post-processing effects for React applications using Three.js.
Addition of "semantic-release" package: The patch adds the "semantic-release" package with version "^21.1.1". This is a tool for automating the versioning and release process of software projects.
Overall, the patch introduces new packages related to post-processing effects in Three.js, adds "prop-types" for type checking, and includes the "semantic-release" package for automated versioning and release management. It's essential to ensure compatibility with other dependencies and make necessary updates based on your project requirements.