We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f914000 commit b45a8c9Copy full SHA for b45a8c9
Sources/GateEngine/UI/ViewController.swift
@@ -78,14 +78,14 @@ open class ViewController {
78
79
//MARK: Game Loop
80
internal func _update(withTimePassed deltaTime: Float) async {
81
- self.update(withTimePassed: deltaTime)
+ await self.update(withTimePassed: deltaTime)
82
for child in children {
83
await child._update(withTimePassed: deltaTime)
84
}
85
86
87
/// Forwarded from this ViewController's view
88
- open func update(withTimePassed deltaTime: Float) {
+ open func update(withTimePassed deltaTime: Float) async {
89
90
91
0 commit comments