
"I suck at math, can I learn programming?"
This is a comment I see every once in a while, and the answer is ABSOLUTELY!
Math isn't really all that important for programming, (unless you're doing graphics programming from scratch where you do need hardcore matrix math) I'm not very good at math myself.
Programming is all about LOGIC which is quite different. You need to think like "ok so here I need to store this data in a collection ,then cycle through all elements in the collection and do something to each element", there's no math involved anywhere in that common task.
The most math you need in programming, and specifically game development, is really just basic trigonometry.
For example calculating a direction vector is: targetPosition - currentPosition; or moving an object currentPosition += moveVector * Time.deltaTime;
So if you suck at math then don't worry! Yes you can still learn programming and make awesome games!
Best of luck!

English






