Last active
July 7, 2022 00:34
-
-
Save whoisryosuke/bb2c90131b3e7fd56709743061fbf597 to your computer and use it in GitHub Desktop.
React - Frame/Game loop using requestAnimationFrame
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useEffect, useRef } from "react" | |
import useLoop from "../hooks/useLoop" | |
import playerInput from "../utils/playerInput" | |
type Props = { | |
} | |
const Gamepad = ({ }: Props) => { | |
// The frame/game loop | |
// We run this 60fps (max) to sync gamepad input to Input class/store | |
useLoop(() => { | |
playerInput() | |
}) | |
return <></> | |
} | |
export default Gamepad |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useEffect, useState } from "react" | |
const useLoop = (callback: (time: DOMHighResTimeStamp) => void) => { | |
const [frameTime, setFrameTime] = useState<DOMHighResTimeStamp>() | |
useEffect(() => { | |
let animationCallback: number; | |
const animationLoop = (time: DOMHighResTimeStamp) => { | |
setFrameTime(time); | |
//Run our callback | |
callback(time); | |
// Here's where we "loop" infinitely | |
animationCallback = requestAnimationFrame(animationLoop) | |
} | |
requestAnimationFrame(animationLoop) | |
return () => { | |
cancelAnimationFrame(animationCallback); | |
} | |
}, []) | |
return frameTime; | |
} | |
export default useLoop; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment