I made a simple little top down tank a while ago, and some parts were hard, some were easy. I thought I would share how I threw it together. So, first thing is first. We're going to talk about how the player gets the tank to move around the map.
This bit moves the tank forward (relative to itself, not the world or camera). Again, we're using the On Keyboard with a Hold setting, linked to W for forward. Again, a Cooldown block so this isn't firing every frame, and then we are going to a Set Velocity block to move the tank forward. (Note that the tank needs to have a collider and a rigid body for this method to work.)
Down on the lower portion, we have a Get Forward block attached to This, so the script can figure out where the front of the tank is. That's fed into a Multiply block and pulling the tank speed from Object variables (which is set to 5 for this tank) and then fed to the Set Velocity block. So, the tank is given a continuous velocity of 5 in the "forward" direction as long as the player holds W.
The Back portion of the script is virtually the same as the Forward chunk, except you can see the tank speed is multiplied by -1 before it is fed into the whole velocity thing. So, the tanks speed is set in the negative and the direction is reversed. Giving it a second look, I wish I had set the Cooldown slightly longer to make the tank reverse slower than it moves forward, but that's just a little personal preference.
That's it for now. Come back soon to lean more about how this tank works. Maybe throw me something on Ko-Fi and I can justify making some more Visual Script write ups. I have a lot of other half-baked scripts to share.
No comments:
Post a Comment