7 lines
205 B
JavaScript
7 lines
205 B
JavaScript
/**
|
|
* @returns {Promise<void>}
|
|
*/
|
|
export async function nextAnimationFrame(inFrame){
|
|
// Await the next animation frame
|
|
await new Promise((resolve,reject)=>requestAnimationFrame(()=>resolve()));
|
|
} |