Quantcast
Viewing all articles
Browse latest Browse all 164

Footstep Script (NullReferenceException: Object reference not set to an instance of an object)

Hello! I have finally found a footstep script that works very well for me. It plays the footstep sounds correctly, by how long I want the audio length to be and through the character controller's velocity. But once I'm done walking and stay still, it restarts the audio file and plays the ENTIRE audio clip (which is a grass footstep audio clip that is 55 seconds long) when I'm not moving. Is there something I have to change in the script? Or should I just altogether find separate, small few second audio clips for parts of the footstep sound? Here is the script: #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>