Quantcast
Channel: Questions in topic: "footsteps"
Viewing all articles
Browse latest Browse all 164

Can Someone Help Point Out What's Not Working on This Script?

$
0
0
Hi everybody! I'm a little stuck on this script and would like some assistance. This footstep script works, but it seems to play only the footstep audio once when I'm walking, then just never make a sound again until I stop and make that first step. Can someone please test this script out and tell me what's wrong with it? I've been trying to get around this for quite some time and have failed numerous times... #pragma strict /** * Script made by OMA [www.oma.netau.net] **/ var concrete : AudioClip[]; var wood : AudioClip[]; var dirt : AudioClip[]; var metal : AudioClip[]; var glass : AudioClip[]; var sand: AudioClip []; var snow: AudioClip []; var floor: AudioClip []; var grass: AudioClip []; private var step : boolean = true; var audioStepLengthWalk : float = 0.7; var audioStepLengthRun : float = 0.25; function OnControllerColliderHit (hit : ControllerColliderHit) { var controller : CharacterController = GetComponent(CharacterController); if (controller.isGrounded && controller.velocity.magnitude < 7 && controller.velocity.magnitude > 5 && hit.gameObject.tag == "Concrete" && step == true || controller.isGrounded && controller.velocity.magnitude < 7 && controller.velocity.magnitude > 5 && hit.gameObject.tag == "Untagged" && step == true ) { WalkOnConcrete(); } else if (controller.isGrounded && controller.velocity.magnitude > 8 && hit.gameObject.tag == "Concrete" && step == true || controller.isGrounded && controller.velocity.magnitude > 8 && hit.gameObject.tag == "Untagged" && step == true) { RunOnConcrete(); } else if (controller.isGrounded && controller.velocity.magnitude < 7 && controller.velocity.magnitude > 5 && hit.gameObject.tag == "Wood" && step == true) { WalkOnWood(); } else if (controller.isGrounded && controller.velocity.magnitude > 8 && hit.gameObject.tag == "Wood" && step == true) { RunOnWood(); } else if (controller.isGrounded && controller.velocity.magnitude < 7 && controller.velocity.magnitude > 5 && hit.gameObject.tag == "Dirt" && step == true) { WalkOnDirt(); } else if (controller.isGrounded && controller.velocity.magnitude > 8 && hit.gameObject.tag == "Dirt" && step == true) { RunOnDirt(); } else if (controller.isGrounded && controller.velocity.magnitude < 7 && controller.velocity.magnitude > 5 && hit.gameObject.tag == "Metal" && step == true) { WalkOnMetal(); } else if (controller.isGrounded && controller.velocity.magnitude > 8 && hit.gameObject.tag == "Metal" && step == true) { RunOnMetal(); } else if (controller.isGrounded && controller.velocity.magnitude < 7 && controller.velocity.magnitude > 5 && hit.gameObject.tag == "Glass" && step == true) { WalkOnGlass(); } else if (controller.isGrounded && controller.velocity.magnitude > 8 && hit.gameObject.tag == "Glass" && step == true) { RunOnGlass(); } else if (controller.isGrounded && controller.velocity.magnitude < 7 && controller.velocity.magnitude > 5 && hit.gameObject.tag == "Sand" && step == true) { WalkOnSand(); } else if (controller.isGrounded && controller.velocity.magnitude > 8 && hit.gameObject.tag == "Sand" && step == true) { RunOnSand(); } else if (controller.isGrounded && controller.velocity.magnitude < 7 && controller.velocity.magnitude > 5 && hit.gameObject.tag == "Snow" && step == true) { WalkOnSnow(); } else if (controller.isGrounded && controller.velocity.magnitude > 8 && hit.gameObject.tag == "Snow" && step == true) { RunOnSnow(); } else if (controller.isGrounded && controller.velocity.magnitude < 7 && controller.velocity.magnitude > 5 && hit.gameObject.tag == "Floor" && step == true) { WalkOnFloor(); } else if (controller.isGrounded && controller.velocity.magnitude > 8 && hit.gameObject.tag == "Floor" && step == true) { RunOnFloor(); } else if (controller.isGrounded && controller.velocity.magnitude < 7 && controller.velocity.magnitude > 5 && hit.gameObject.tag == "Grass" && step == true) { WalkOnGrass(); } else if (controller.isGrounded && controller.velocity.magnitude > 8 && hit.gameObject.tag == "Grass" && step == true) { RunOnGrass(); } } /////////////////////////////////// CONCRETE //////////////////////////////////////// function WalkOnConcrete() { step = false; audio.clip = concrete[Random.Range(0, concrete.length)]; audio.volume = .1; audio.Play(); yield WaitForSeconds (audioStepLengthWalk); step = true; } function RunOnConcrete() { step = false; audio.clip = concrete[Random.Range(0, concrete.length)]; audio.volume = .3; audio.Play(); yield WaitForSeconds (audioStepLengthRun); step = true; } ////////////////////////////////// WOOD ///////////////////////////////////////////// function WalkOnWood() { step = false; audio.clip = wood[Random.Range(0, wood.length)]; audio.volume = .1; audio.Play(); yield WaitForSeconds (audioStepLengthWalk); step = true; } function RunOnWood() { step = false; audio.clip = wood[Random.Range(0, wood.length)]; audio.volume = .3; audio.Play(); yield WaitForSeconds (audioStepLengthRun); step = true; } /////////////////////////////////// DIRT ////////////////////////////////////////////// function WalkOnDirt() { step = false; audio.clip = dirt[Random.Range(0, dirt.length)]; audio.volume = .1; audio.Play(); yield WaitForSeconds (audioStepLengthWalk); step = true; } function RunOnDirt() { step = false; audio.clip = dirt[Random.Range(0, dirt.length)]; audio.volume = .3; audio.Play(); yield WaitForSeconds (audioStepLengthRun); step = true; } ////////////////////////////////// METAL /////////////////////////////////////////////// function WalkOnMetal() { step = false; audio.clip = metal[Random.Range(0, metal.length)]; audio.volume = .1; audio.Play(); yield WaitForSeconds (audioStepLengthWalk); step = true; } function RunOnMetal() { step = false; audio.clip = metal[Random.Range(0, metal.length)]; audio.volume = .3; audio.Play(); yield WaitForSeconds (audioStepLengthRun); step = true; } ////////////////////////////////// GLASS /////////////////////////////////////////////// function WalkOnGlass() { step = false; audio.clip = glass[Random.Range(0, glass.length)]; audio.volume = .1; audio.Play(); yield WaitForSeconds (audioStepLengthWalk); step = true; } function RunOnGlass() { step = false; audio.clip = glass[Random.Range(0, glass.length)]; audio.volume = .3; audio.Play(); yield WaitForSeconds (audioStepLengthRun); step = true; } ////////////////////////////////// SAND /////////////////////////////////////////////// function WalkOnSand() { step = false; audio.clip = sand[Random.Range(0, sand.length)]; audio.volume = .1; audio.Play(); yield WaitForSeconds (audioStepLengthWalk); step = true; } function RunOnSand() { step = false; audio.clip = sand[Random.Range(0, sand.length)]; audio.volume = .3; audio.Play(); yield WaitForSeconds (audioStepLengthRun); step = true; } ////////////////////////////////// SNOW /////////////////////////////////////////////// function WalkOnSnow() { step = false; audio.clip = snow[Random.Range(0, snow.length)]; audio.volume = .1; audio.Play(); yield WaitForSeconds (audioStepLengthWalk); step = true; } function RunOnSnow() { step = false; audio.clip = snow[Random.Range(0, snow.length)]; audio.volume = .3; audio.Play(); yield WaitForSeconds (audioStepLengthRun); step = true; } ////////////////////////////////// FLOOR /////////////////////////////////////////////// function WalkOnFloor() { step = false; audio.clip = floor[Random.Range(0, floor.length)]; audio.volume = .1; audio.Play(); yield WaitForSeconds (audioStepLengthWalk); step = true; } function RunOnFloor() { step = false; audio.clip = floor[Random.Range(0, floor.length)]; audio.volume = .3; audio.Play(); yield WaitForSeconds (audioStepLengthRun); step = true; } ////////////////////////////////// GRASS /////////////////////////////////////////////// function WalkOnGrass() { step = false; audio.clip = grass[Random.Range(0, grass.length)]; audio.volume = .1; audio.Play(); yield WaitForSeconds (audioStepLengthWalk); step = true; } function RunOnGrass() { step = false; audio.clip = grass[Random.Range(0, grass.length)]; audio.volume = .3; audio.Play(); yield WaitForSeconds (audioStepLengthRun); step = true; } @script RequireComponent(AudioSource)

Viewing all articles
Browse latest Browse all 164

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>