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 FrostyFudge · Feb 24, 2020 at 09:46 AM · addforcetagoncollisionenternewbie

AddForce to object using OnCollisionEnter via a pre-existing AddForce?

I was making a test game based on a tutorial from a Youtuber named Brackeys on Unity 2019.3.2f1 Personal < DX11 >


Here's the link to the playlist as to how the entire thing runs:

https://www.youtube.com/watch?v=gAB64vfbrhI&list=PLPV2KyIb3jR5QFsefuO2RlAgWEz6EvVi6∈dex=6


As I followed his steps, I wanted to have a situation like this:

  1. The player hits a block.

  2. The player stops (this part is working.)

  3. Either all obstacles with the tag "Obstacle" or only the obstacle hit will have a +Y-axis force applied to it.


For Step 3 I have looked around a lot on Unity Forums, eventually I found one that seemed to work partially:

https://answers.unity.com/questions/994020/addforce-to-object-using-oncollisionenter.html


I have modified that part of the code to my variables, here is the full code in C#.

 using UnityEngine;
 
 public class PlayerCollision : MonoBehaviour {
 
     public PlayerMovement movement;
     public Rigidbody obstacle;
 
     void OnCollisionEnter (UnityEngine.Collision collisionInfo)
     {
         if (collisionInfo.gameObject.tag == "Obstacle")
             Debug.Log("We hit an obstacle!");
         {
             movement.enabled = false;
 
             collisionInfo.gameObject.GetComponent<Rigidbody>().AddForce(0, 500, 0);
         }
     }
 
 }


The code had no problems, the log was empty, until when I run the game this message shows up:


MissingComponentException: There is no 'Rigidbody' attached to the "Floor" game object, but a script is trying to access it.

You probably need to add a Rigidbody to the game object "Floor". Or your script needs to check if the component is attached before using it.

UnityEngine.Rigidbody.AddForce (UnityEngine.Vector3 force, UnityEngine.ForceMode mode) (at :0)

UnityEngine.Rigidbody.AddForce (System.Single x, System.Single y, System.Single z) (at :0)

PlayerCollision.OnCollisionEnter (UnityEngine.Collision collisionInfo) (at Assets/PlayerCollision.cs:15)


I tried adding the RigidBody to the Floor but nothing moves when the game runs as if the floor is also an obstacle despite not having the "Obstacle" tag.


Extra info if it's helpful:

  • Nothing is flagged "Is Kinematic"

  • Currently nothing is inserted into "public RigidBody obstacle;"

  • Even if something is plugged in, nothing will move much when played.

  • I'm wondering if the Material plays any part in this, but it all worked well until I tried to do the altering.

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

0 Replies

· Add your reply
  • Sort: 

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

200 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 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 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 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 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 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 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

How to make a knocback smooth - 2D Unity 0 Answers

Why does it display an error? 2 Answers

How to set a tag to a collision? 0 Answers

OnCollisionEnter fails to destroy Player GameObject 0 Answers

How to connect onCollisionEnter with another rigidbody via tag,Problem with collision touching a rigidbody 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