Search found 7 matches

by KalevTait
Thu Nov 17, 2022 1:20 am
Forum: Support and Development
Topic: Make bullets follow player?
Replies: 6
Views: 2209

Re: Make bullets follow player?

teilzeit wrote: Wed Nov 16, 2022 12:34 pm the problem of the player sort of "outrunning" their own projectiles
Every shmup I've seen, the bullets travel faster than the player is able to move. Bombs are slower, but outrunning bombs doesn't look weird.
by KalevTait
Tue Nov 15, 2022 1:27 am
Forum: Support and Development
Topic: Object Collision
Replies: 11
Views: 2379

Re: Object Collision

Just to add to the above, you'll need to keep a list of all bullets and a list of all enemies, and whenever either is created it gets added to its respectie list, and when you detect a collision remove the bullet from the list of bullets and the enemy from the list of enemies. However, you shouldn't...
by KalevTait
Sun Nov 13, 2022 10:44 pm
Forum: Support and Development
Topic: Mac Ventura 13.0.1 breaks mousepressed?
Replies: 1
Views: 1305

Re: Mac Ventura 13.0.1 breaks mousepressed?

Nevermind, a system restart fixed it.
by KalevTait
Sun Nov 13, 2022 9:52 pm
Forum: Support and Development
Topic: How do I print a variable?
Replies: 3
Views: 1720

Re: How do I print a variable?

Two issues, one which is causing your code to break, and one which is just going to cause your code to act unexpectedly. The first is that instead of: px = love.mouse.getX you want to use: px = love.mouse.getX() The former is making px into a pointer to the getX function (so you could later call px(...
by KalevTait
Sun Nov 13, 2022 6:52 pm
Forum: Support and Development
Topic: Make bullets follow player?
Replies: 6
Views: 2209

Re: Make bullets follow player?

The effect you are describing occurs in most commercial shmups, so I wouldn't worry about it if I were you. But if you really want to worry about it, try adjusting the firing rate, so that you fire slower if moving forward and faster if you are moving backwards. There's probably some math you could ...
by KalevTait
Sun Nov 13, 2022 6:47 pm
Forum: Support and Development
Topic: Mac Ventura 13.0.1 breaks mousepressed?
Replies: 1
Views: 1305

Mac Ventura 13.0.1 breaks mousepressed?

I'm developing on mac, but I'm using two different computers - one of which is using the OS for Ventura 13.0.0 and the other which has been updated to Ventura 13.0.1 On the computer running Ventura 13.0.0 everything works as I'd expect, but on the computer running Ventura 13.0.1 I seem to be getting...
by KalevTait
Sun Aug 19, 2018 10:30 am
Forum: General
Topic: LÖVE 11.1 released!
Replies: 41
Views: 96579

Re: LÖVE 11.1 released!

Just got this version, and as far as I can tell highdpi is no longer working on Mac. Can someone confirm or deny?

Cheers,
-Kalev