Skip to content

Instantly share code, notes, and snippets.

@whoisryosuke
Last active July 7, 2022 00:34
Show Gist options
  • Save whoisryosuke/bb2c90131b3e7fd56709743061fbf597 to your computer and use it in GitHub Desktop.
Save whoisryosuke/bb2c90131b3e7fd56709743061fbf597 to your computer and use it in GitHub Desktop.
React - Frame/Game loop using requestAnimationFrame
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
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