This is the script I used in Nuclear Lizard Island Rampage to slow down the player when they were stomping around in the ocean. It's relatively simple, one script to set the player to a fixed, lower speed when they get into the ocean (On Trigger Enter) and one to set their speed back to normal when they get out (On Trigger Exit). Both are hooked up to tag checks (which you can read more about here) to make sure the script doesn't trigger when some random things fall in the ocean, only the lizard. I should note that this script it attached to a trigger zone on the ocean itself, and not on the player character even though it controls the player speed. It was easier to do it this way than have checks on the players feet constantly looking out for water.
You'll notice there are two different speed blocks, one for normal movement speed and one for sprint speed, that need to be set, and those are hooked up to a Scene Object variable through the green lines, which is linked to the player. You'll also notice on the bottom, we're resetting the players normal movement speed from a Saved variable. Since the player can upgrade their movement speed the reset speed need to be able to match their upgrade. We need to make sure we're setting them back to how fast they should be moving and not giving them a debuff when they get out of the water.
Also on the Set Sprint Speed block, we're taking the players upgraded speed variable (Player_Speed) and running it through and addition block with a fixed variable of 3. I didn't want to mess with another up-gradable variable for sprint speed. So, I locked sprint at always 3 faster than walking speed.
That's it for now. Thanks for reading. If you want more maybe buy the game this script came from or just 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