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 justking14 · Oct 18, 2013 at 01:24 PM · rigidbodygravitytransform.positioncubefalling

Gravity is not working no matter what

void Update () {

     float xxx = g1.transform.position.x;
 float yyy = g1.transform.position.y;
 float zzz = g1.transform.position.z;
 camera1.transform.position =  new Vector3(xxx + ax, yyy + 100, zzz + az);
 if(Input.GetKey(KeyCode.LeftArrow)){
     ax = 175;
     az = 0;
     camera1.transform.localEulerAngles = new Vector3(15,270,0);
 }
 if(Input.GetKey(KeyCode.DownArrow)){
     ax = 0;
     az = -175;
     camera1.transform.localEulerAngles = new Vector3(15,0,0);
 }    
 if(Input.GetKey(KeyCode.UpArrow)){
     ax = 0;
     az = 175;
     camera1.transform.localEulerAngles = new Vector3(15,180,0);
 }        
 if(Input.GetKey(KeyCode.RightArrow)){
     ax = -175;
     az = 0;
     camera1.transform.localEulerAngles = new Vector3(15,90,0);
 }            
 
 if(Input.GetKey(KeyCode.Space)){
     transform.position += transform.up * jumpspeed * 2;
     if(jumpspeed < 1){
         jumpspeed = jumpspeed + .001f;
     }
 }
 if(Input.GetKey(KeyCode.A)){
     transform.position -= transform.right * speed * 2;
     if(speed < 1){
     speed = speed + .001f;
     }
 }
 if(Input.GetKey(KeyCode.D)){
     transform.position += transform.right * speed * 2;
     if(speed < 1){
     speed = speed + .001f;
         }
 }
 if(Input.GetKey(KeyCode.W)){
     transform.position += transform.forward * speed * 2;
         if(speed < 1){
     speed = speed + .001f;
         }
 }    
 if(Input.GetKey(KeyCode.S)){
     transform.position -= transform.forward * speed * 2;
         if(speed < 1) {
     speed = speed + .001f;
 }
     }
 
     if(touching == false){
         if(transform.position.y > 13.17919){
           transform.position -=transform.up;
         }
     }
 }

} This is part of the code for my game. It's on a cube with a rigidbody, mesh collider, and box collider. It has gravity turned on, a high mass, and low drag. I have messed with all this multiple times, but it won't fall no matter what I do. It won't fall and when I jump it will just stay in the air. Any advice?

Comment
Add comment · Show 2
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 MFen · Oct 18, 2013 at 01:36 PM 0
Share

Try creating a new project, add a terrain, put a cube just above the terrain (with the camera looking at it) add rigidbody to the cube, do not change any of the choices in the rigidbody, then hit play. If that works it must be something in your project that is messing with some of the default settings.

avatar image Owen-Reynolds · Oct 18, 2013 at 04:18 PM 0
Share

"mesh collider, and box collider": both on the Cube? You shouldn't need both, and Unity should have given you a warning about two together.

What $$anonymous$$Fen said, you should have been building this up and testing. Then you'd have one thing you just now added that broke falling. So restart and slowly readd code (maybe comment out everything, then uncomment to add back in.)

You have a follow cam? $$anonymous$$aybe it is falling but doesn't look like it? Try scene view, or look at the Inspector values, to test.

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

16 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

Related Questions

3D Cubes vibrating and sliding while ontop of eachother 0 Answers

hit.normal cube 0 Answers

Make A Cube 'Sticky' 4 Answers

Making a cube fall without rigidbody 1 Answer

Rigidbody y velocity is stuck on 0, gravity is not turned off. 2 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