Skip to content

Commit 1cdf8e3

Browse files
committed
Fix incorrect args
1 parent 9e51d52 commit 1cdf8e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/GateEngine/ECS/3D Specific/Rig/Rig3DSystem.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public final class Rig3DSystem: System {
101101
for entity in context.entities {
102102
if let rigAttachmentComponent = entity.component(ofType: RigAttachmentComponent.self) {
103103
updateRigAttachmentTransform(
104-
game,
104+
context,
105105
entity: entity,
106106
rigAttachmentComponent: rigAttachmentComponent
107107
)
@@ -122,7 +122,7 @@ public final class Rig3DSystem: System {
122122
}
123123

124124
private func updateRigAttachmentTransform(
125-
_ game: Game,
125+
_ context: ECSContext,
126126
entity: Entity,
127127
rigAttachmentComponent: RigAttachmentComponent
128128
) {

0 commit comments

Comments
 (0)