File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export class Baddie extends ex.Actor {
21
21
height : height ,
22
22
} ) ;
23
23
24
- // Passive recieves collision events but does not participate in resolution
24
+ // Passive receives collision events but does not participate in resolution
25
25
this . body . collisionType = ex . CollisionType . Passive ;
26
26
// Enemy groups does not collide with itself
27
27
this . body . group = Baddie . group ;
@@ -62,7 +62,7 @@ export class Baddie extends ex.Actor {
62
62
63
63
}
64
64
65
- // Fires before excalibur collision resoulation
65
+ // Fires before excalibur collision resolution
66
66
private onPreCollision ( evt : ex . PreCollisionEvent ) {
67
67
// only kill a baddie if it collides with something that isn't a baddie or a baddie bullet
68
68
if ( ! ( evt . other instanceof Baddie ) &&
You can’t perform that action at this time.
0 commit comments