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 75808fc commit 969d671Copy full SHA for 969d671
src/Tests/ECS/Arch/Test_StructuralChange_Docs.cs
@@ -36,7 +36,7 @@ public static void QueryException()
36
entity.Add(new EntityName("test"));
37
});
38
39
- // Solution: Ussing a CommandBuffer
+ // Solution: Using a CommandBuffer
40
var buffer = store.GetCommandBuffer();
41
query.ForEachEntity((ref Position position, Entity entity) => {
42
buffer.AddComponent(entity.Id, new EntityName("test"));
@@ -68,7 +68,7 @@ protected override void OnUpdate() {
68
Query.ForEachEntity((ref Position component1, Entity entity) => {
69
70
71
- // change made via CommandBuffer are applied by parent group
+ // changes made via CommandBuffer are applied by parent group
72
}
73
74
0 commit comments