Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
r3f-native-orbitcontrols
Advanced tools
OrbitControls for React Three Fiber in React Native
r3f-native-orbitcontrols is distributed as a npm package and can be installed as follows:
// with npm
npm install r3f-native-orbitcontrols
// with yarn
yarn add r3f-native-orbitcontrols
import useControls from "r3f-native-orbitcontrols"
import { Canvas } from "@react-three/fiber/native"
import { View } from "react-native"
// The import below is used only in Canvases:
import { PerspectiveCamera } from "three"
function SingleCanvas() {
const [OrbitControls, events] = useControls()
return (
// If this isn't working check if you have set the size of the View.
// The easiest way to do it is to use the full size, e.g.:
// <View style={{ flex: 1 }} />
<View {...events}>
<Canvas>
<OrbitControls />
{/* Place the scene elements here as usual */}
</Canvas>
</View>
)
}
function Canvases() {
// You also can use the same OrbitControls for multiple canvases
// creating an effect like the game
// The Medium (https://store.steampowered.com/app/1293160)
const [OrbitControls, events] = useControls()
// In this case the same camera must be used in all the canvases
const camera = new PerspectiveCamera()
// You need to configure the camera too. Follow three.js' documentation.
// Default configuration:
// camera.position.set(10, 10, 10)
// camera.lookAt(0, 0, 0)
return (
<View {...events}>
<Canvas camera={camera}>
<OrbitControls />
</Canvas>
<Canvas camera={camera}>
<OrbitControls />
</Canvas>
</View>
)
}
You can find an example app here.
The <OrbitControls />
element may receive the following properties:
Property | Type | Description |
---|---|---|
camera | Camera | read-only, available to onChange |
enabled | boolean | |
target | Vector3 | |
minPolarAngle | number | how close you can orbit vertically |
maxPolarAngle | number | how far you can orbit vertically |
minAzimuthAngle | number | how close you can orbit horizontally |
maxAzimuthAngle | number | how far you can orbit horizontally |
dampingFactor | number | inertia factor |
enableZoom | boolean | |
zoomSpeed | number | |
minZoom | number | |
maxZoom | number | |
enableRotate | boolean | |
rotateSpeed | number | |
enablePan | boolean | |
panSpeed | number | |
ignoreQuickPress | boolean | may cause bugs when enabled* |
onChange | (event) => void | receives an event with all the properties above |
You can find the defaults for each option here.
*: This option is not recommended in modern devices. It's only useful in older devices, which don't propagate touch events to prevent "bubbling". You can find more information about this here.
The answer is very simple: they don't work on native, only on the web and (much) older versions of React Three Fiber.
FAQs
OrbitControls for React Three Fiber in React Native
The npm package r3f-native-orbitcontrols receives a total of 5,631 weekly downloads. As such, r3f-native-orbitcontrols popularity was classified as popular.
We found that r3f-native-orbitcontrols demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.