Hi
I’m having difficulties to figure out how to create a generic Bounce script to be added in any object and that would make any object colliding to it to bounce.
In my particular case, I want my player (a sphere) to roll on the floor, and when it collides with an object that has the bouncing script attached, my player gets pushed around with AddExplosionForce.
At first I’m specifically testing for my player object, but the idea is to be generic.
This is the script for the Bouncer object:
using UnityEngine;
using System.Collections;
public class BouncingEffect : MonoBehaviour {
public float radius = 5.0F;
public float power = 1000.0F;
Vector3 epicentro;
void Start() {
Vector3 explosionPos = transform.position;
epicentro = explosionPos;
}
void OnCollisionEnter(Collision collision) {
if (collision.gameObject.tag == "Player") {
GameObject player = GameObject.FindWithTag("Player");
Rigidbody myplayer = player.AddComponent<Rigidbody>();
myplayer.AddExplosionForce (power, epicentro, radius, 3.0F);
Debug.Log("Player has collided with Bouncer");
}
}
}
When I collide with my sphere player to the bouncer object, I got this error for the line: myplayer.AddExplosionForce (power, epicentro, radius, 3.0F);
NullReferenceException: Object reference not set to an instance of an object
BouncingEffect.OnCollisionEnter
(UnityEngine.Collision collision) (at
Assets/Scripts/BouncingEffect.cs:23)
I’m not able to figure out what the problem is.