Console.log( Variables in JavaScript, which I will be referring to as JS from now on, is relatively similar to python. First, we have the ‘let’ variable type. ‘let’ is a variable type put before the variable, but functions just like a normal python variable. you can reference it, you can change it, all that good…
Extends Feb 16, 2024, Friday Classwork After finished up the 2nd video, and nearly finishing the 3rd in the series, I was able to finally!! Make some players, and get them to move. The main code to get them moving is in our new file, called KeyInput.java In KeyInput.java Obviously the space on here is…
A good portion of the first part of class was looking up the best code to use for the purpose I plan to use it for. While I am used to Python, I was well aware it was not suited for the type of game I wished to make. I was hoping to use a…
Video I used to learn: https://www.youtube.com/watch?v=A_Z1lgZLSNc Threading: Running pieces of code concurrently/at the same time Python has something like this; it allows the coder to run two or maybe more pieces of code at the same time. Obviously, such a thing isn’t technically possible, but with how fast machines work it is very close to…