Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by Cheo · Oct 24, 2015 at 06:02 PM · scripting beginnerreference-other-objectaddexplosionforcerigidbody collision

How to create a generic script for bouncing behaviour

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.

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by Cheo · Oct 25, 2015 at 11:01 AM

I've figured out how to implement the script for a particular object:

 using UnityEngine;
 using System.Collections;
 
 public class BouncingEffect : MonoBehaviour {
 
     public float radius = 0.0F;
     public float power = 2000.0F;
     public float upwardsModifier = 0.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 player = Player.GetComponent<Rigidbody>();
             player.AddExplosionForce (power, epicentro, radius, upwardsModifier);
             Debug.Log("Player has collided with Bouncer");
         }
     }
 }

The issue it was the capital letter for player. There was no object called 'player', but it was 'Player'.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

30 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Recognizing submeshes as GameObject? 0 Answers

Error CS0122: inaccessable due to protection level 1 Answer

Is it better to split a script into different scripts? 1 Answer

Make an object appear during play 2 Answers

Freezing Prefab or deactivating its script in another? 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges