Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started/community-r3f-components.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: This page showcases some React Three Fiber/r3f community components
nav: 4
---

If you'd like to list new community components, please make a PR to [this doc](https://github.com/pmndrs/react-three-fiber/tree/master/docs/getting-started/community-r3f-components.mdx) file. It showcases some r3f community components that have not been merged to to the [drei](http://drei.docs.pmnd.rs) components collection or to another [pmndrs](https://github.com/pmndrs) project.
If you'd like to list new community components, please make a PR to [this doc](https://github.com/pmndrs/react-three-fiber/tree/master/docs/getting-started/community-r3f-components.mdx) file. It showcases some r3f community components that have not been merged to the [drei](http://drei.docs.pmnd.rs) components collection or to another [pmndrs](https://github.com/pmndrs) project.

## R3F community components

Expand Down
6 changes: 3 additions & 3 deletions docs/getting-started/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,11 @@ Some helpful material:
<img src="../banner-journey.jpg" />
</a>

## Eco system
## Ecosystem

There is a vibrant and extensive eco system around three-fiber, full of libraries, helpers and abstractions.
There is a vibrant and extensive ecosystem around three-fiber, full of libraries, helpers and abstractions.

- [`@react-three/drei`](https://github.com/pmndrs/drei) &ndash; useful helpers, this is an eco system in itself
- [`@react-three/drei`](https://github.com/pmndrs/drei) &ndash; useful helpers, this is an ecosystem in itself
- [`@react-three/gltfjsx`](https://github.com/pmndrs/gltfjsx) &ndash; turns GLTFs into JSX components
- [`@react-three/postprocessing`](https://github.com/pmndrs/react-postprocessing) &ndash; post-processing effects
- [`@react-three/test-renderer`](https://github.com/pmndrs/react-three-fiber/tree/master/packages/test-renderer) &ndash; for unit tests in node
Expand Down
2 changes: 1 addition & 1 deletion packages/fiber/src/core/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export function createEvents(store: RootStore) {
function cancelPointer(intersections: Intersection[]) {
const { internal } = store.getState()
for (const hoveredObj of internal.hovered.values()) {
// When no objects were hit or the the hovered object wasn't found underneath the cursor
// When no objects were hit or the hovered object wasn't found underneath the cursor
// we call onPointerOut and delete the object from the hovered-elements map
if (
!intersections.length ||
Expand Down
2 changes: 1 addition & 1 deletion packages/fiber/src/core/loop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export function invalidate(state?: RootState, frames = 1): void {
//called from within a useFrame, it means the user wants an additional frame
state.internal.frames = 2
} else {
//the user need a new frame, no need to increment further than 1
//the user needs a new frame, no need to increment further than 1
state.internal.frames = 1
}
}
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ Some helpful material:

# Ecosystem

There is a vibrant and extensive eco system around three-fiber, full of libraries, helpers and abstractions.
There is a vibrant and extensive ecosystem around three-fiber, full of libraries, helpers and abstractions.

- [`@react-three/drei`](https://github.com/pmndrs/drei) &ndash; useful helpers, this is an eco system in itself
- [`@react-three/drei`](https://github.com/pmndrs/drei) &ndash; useful helpers, this is an ecosystem in itself
- [`@react-three/gltfjsx`](https://github.com/pmndrs/gltfjsx) &ndash; turns GLTFs into JSX components
- [`@react-three/postprocessing`](https://github.com/pmndrs/react-postprocessing) &ndash; post-processing effects
- [`@react-three/uikit`](https://github.com/pmndrs/uikit) &ndash; WebGL rendered UI components for three-fiber
Expand Down