You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The isInitial flag lets us only listen to the first time a key is pressed vs the repeated tests the system will log.
It's correctly in the type but typescript says it's wrong.
useCommand("Control",(info)=>{//@ts-ignore this does exist?if(!info.isInitial)return;console.log("control pressed");},()=>{console.log("control released");});
The text was updated successfully, but these errors were encountered:
The
isInitial
flag lets us only listen to the first time a key is pressed vs the repeated tests the system will log.It's correctly in the type but typescript says it's wrong.
The text was updated successfully, but these errors were encountered: