-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(coroutines): Implements method to await physics and process frames
- Loading branch information
Showing
5 changed files
with
129 additions
and
45 deletions.
There are no files selected for viewing
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
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
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
22 changes: 22 additions & 0 deletions
22
kt/godot-coroutine-library/src/main/kotlin/godot/coroutines/AwaitFrames.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package godot.coroutines | ||
|
||
import kotlinx.coroutines.async | ||
|
||
suspend inline fun <R> awaitProcessFrame( | ||
crossinline block: () -> R | ||
): R { | ||
val job = GodotCoroutine.async(GodotDispatchers.ProcessFrame) { | ||
block() | ||
} | ||
return job.await() | ||
} | ||
|
||
suspend inline fun <R> awaitPhysicsFrame( | ||
crossinline block: () -> R | ||
): R { | ||
val job = GodotCoroutine.async(GodotDispatchers.PhysicsFrame) { | ||
block() | ||
} | ||
|
||
return job.await() | ||
} |
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