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 /
avatar image
0
Question by cosieja · Jul 24, 2018 at 03:06 AM · rotationrigidbody2dmove an object

Can't get ship rotating in place to "launch" in direction it's currently facing

I have a spaceship rotating in place. When the player presses the "space" key I want the ship to move in whatever direction it's currently facing. I'm trying to add a force to a rigidbody2d, but it's obviously not working. All of my debug.log's seem to be working correctly, but nothing happens when the "launch" method runs.

This is my current script. The player ship is in the Rb place in the inspector.

using System.Collections; using System.Collections.Generic; using UnityEngine;

public class PlayerShip : MonoBehaviour { public int speed; public bool flying = false; public int rotationSpeed = -50;

 public int rotationDir = 0;
 public float thrust = 30f;
 public Rigidbody2D rb;

   
 // Use this for initialization
 void Start ()
 {
     //current pos = new position
     transform.position = new Vector3(-1.69f, -3.91f, 0);

     //rb = GetComponent<Rigidbody2D>();
     
 }
 
 // Update is called once per frame
 void Update ()
 {
     ShipRotation();

     if (Input.GetKeyDown(KeyCode.Space))
     {
         Launch();

         Debug.Log("You have pressed the Space key");
     }
    
 }

 void ShipRotation()
 {
     flying = false;
     if (rotationDir == 0)
     {
         // Rotate the object around its local Z axis at 1 degree per second
         transform.Rotate(0, 0, Time.deltaTime * rotationSpeed);
     }
     else
     {
         transform.Rotate(0, 0, Time.deltaTime * rotationSpeed * -1);
     }
 }

 public void Launch()
 {
     if (rb == null)
     {
         Debug.Log("there is no rigidbody");
     }
     else if (rb != null)
     {
         Debug.Log("I have found a rigid body!");
     }

     rb.AddRelativeForce(Vector3.forward * thrust * Time.deltaTime);
 }

}

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
Best Answer

Answer by cosieja · Aug 01, 2018 at 03:30 PM

Eventually figured it out. "AddRelativeForce" was what I was missing. I also change the "flying" bool to stop the rotation of the ship when it is launched, which allows it to fly across the screen in a straight line.

void FixedUpdate() { //rb.AddRelativeForce(Vector2.up * thrustInput); if (Input.GetButtonDown("Jump")) { flying = true;

         rb.AddRelativeForce(Vector2.up * thrust * speed);

         Debug.Log("You have pressed the Space key");

         Launch();
     }
     

 }
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

121 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

Related Questions

Translate speed keeps changing 1 Answer

Rotation with rigidbody2d.AddForce() ? 1 Answer

How to make cars rotate towards a waypoint while turning? 0 Answers

In unity 2D c# how to rotate an object like geometry dash? 1 Answer

Freeze rotation but needs angular rotate token in Rigidbody 2D 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