Merge pull request #33 from MartinKral/LastSetting

Daggers shoot up
This commit is contained in:
Martin Král 2023-01-17 08:02:09 +01:00 committed by GitHub
commit 01f347d339
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,7 +165,7 @@ export class Game extends Component {
this.horizontalProjectileLauncher = new WaveProjectileLauncher( this.horizontalProjectileLauncher = new WaveProjectileLauncher(
this.horizontalProjectileLauncherComponent, this.horizontalProjectileLauncherComponent,
this.player.node, this.player.node,
[new Vec2(0, 1), new Vec2(0, -1)], [new Vec2(0, 1), new Vec2(-0.1, 0.8), new Vec2(0.1, 0.8)],
settings.player.horizontalLauncher, settings.player.horizontalLauncher,
projectileData projectileData
); );