Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 /
avatar image
0
Question by awplays49 · Feb 14, 2015 at 12:48 PM · gravitygungunsfalling-through-floor

Gun going through floor when dropping?

hi, i made a gun system but when i drop a gun it falls through the terrain. anything i need to explain further ill be around, heres my code, however im not sure it has to do with my code. ill also leave my project for people to have a peek.

 using UnityEngine;
 using System.Collections;
 
 public class Gun : MonoBehaviour {
 
     public GameObject Weapon1Get;
     public GameObject Weapon2Get;
     private GameObject WeaponDropped;
 
     void OnMouseDown () {
         Debug.Log ("YES");
         WeaponDropped = Weapon1Get.GetComponent <Weapon1> ().CurrentWeapon;
         WeaponDropped.collider.enabled = true;
         WeaponDropped.rigidbody.detectCollisions = true;
         collider.enabled = false;
         rigidbody.detectCollisions = false;
         Weapon1Get.GetComponent <Weapon1> ().CurrentWeapon = gameObject;
     }
 
     void OnCollisionEnter (Collision Col)
     {
         if (Col.gameObject.tag == "Player")
         {
             Physics.IgnoreCollision (collider, Col.gameObject.collider);
         }
     }
 }


https://drive.google.com/file/d/0B2ZiQtohl3tmdXpXVmRNNmxSTTQ/view?usp=sharing

Comment
Add comment · Show 1
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
avatar image awplays49 · Feb 14, 2015 at 01:13 PM 0
Share

Also as you can see at the bottom of the code, i thought maybe the players collision with the gun was the problem but its not.

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by ddulshan · Feb 14, 2015 at 01:48 PM

Try Weapon1Get.collider.enabled = true and Weapon1Get.rigidbody.detectCollisions = true; Instead what you've already written.

Comment
Add comment · Show 4 · 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
avatar image awplays49 · Feb 14, 2015 at 02:59 PM 0
Share

i tried that. the reason i did this ins$$anonymous$$d is because it didnt work. @DragonWarrior_Dnw_

avatar image awplays49 · Feb 14, 2015 at 03:00 PM 0
Share

and now i have a code that just makes it ignore collision with player when its the gun.

avatar image awplays49 · Feb 14, 2015 at 03:09 PM 0
Share

my new code, after modifying it:

 using UnityEngine;
 using System.Collections;
 
 public class Gun : $$anonymous$$onoBehaviour {
 
     public GameObject Weapon1Get;
     public GameObject Weapon2Get;
     public GameObject PlayerGet;
 
     public bool IsStarterGun;
 
     void Start () {
         if (IsStarterGun == true)
         {
             Physics.IgnoreCollision (collider, PlayerGet.collider, true);
         }
     }
 
     void On$$anonymous$$ouseDown () {
         Physics.IgnoreCollision (collider, PlayerGet.collider, true);
         Weapon1Get.GetComponent <Weapon1> ().CurrentWeapon = gameObject;
     }
 
     void OnCollisionEnter (Collision Col) {
         if (Col.gameObject.tag == "Surface" && Weapon1Get.GetComponent <Weapon1> ().CurrentWeapon != gameObject)
         {
             Physics.IgnoreCollision (collider, PlayerGet.collider, false);
         }
     }
 }
 

avatar image awplays49 · Feb 14, 2015 at 03:14 PM 0
Share

im changing it back though

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

20 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

Related Questions

Allow picked up object to collide with game level GameObjects 1 Answer

Gun Manager only working once 1 Answer

Object falls through floor 1 Answer

Enemy falls through floor when both have collider 2 Answers

Fps Gun Scrpt :) 1 Answer


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