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 vineeth25 · Oct 11, 2017 at 07:12 AM · unity 2d

How to make the bullet shoot in the sprite direction

Hello. I am very new to unity and I am trying to shoot the bullet in the direction my sprite is facing. Any help is greatly appreciated.

 public var bullet : GameObject;
 public var speed = 20;
 public var up :Sprite;
 public var right :Sprite;
 public var left :Sprite;
 public var down :Sprite;
 public var UpRight :Sprite;
 public var Upleft :Sprite;
 public var downleft :Sprite;
 public var downRight :Sprite;
 private var currentDirection = Vector3.zero;
 var health = 3;
 var lastShot = 0;
 function Start () {
 
 }
 if (Input.GetKeyUp("right") && pos.x < .91)
 {
         
             
         if(r2d.velocity.y > 0)
         {
             GetComponent(SpriteRenderer).sprite = UpRight;
         }
         else if(r2d.velocity.y < 0 )
         {
             GetComponent(SpriteRenderer).sprite = downRight;
         }
         else
         {
             GetComponent(SpriteRenderer).sprite = right;
         }
         r2d.velocity = new Vector3(0f, r2d.velocity.y);
 }
 function Update () {
 lastShot++;
 var r2d : Rigidbody2D = GetComponent("Rigidbody2D");
 var pos = Camera.main.WorldToViewportPoint(transform.position);
 var horizontal =Input.GetAxis("P2Horizontal");
 var vertical = Input.GetAxis("P2Vertical");
 var movement = new Vector2(horizontal, vertical);
 r2d.AddForce(movement * speed);
 if (Input.GetKeyDown("return")) {
     if(lastShot > 70)
     {
         var bullet  = Instantiate(bullet,transform.position, Quaternion.identity);
         var velocity = bullet.GetComponent(Rigidbody2D);
         velocity.AddForce(r2d.transform.right * -3);
         lastShot = 0;
     }
 }
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 Yuvii · Oct 11, 2017 at 09:09 AM

Hey,

In your configuration, you should declare a vector2 dirBullet and change it when you change the sprite and multiply this direction to the bullet's speed.

You got some weird stuff in your code (like the -3 in your bullet speed), but anyway i'll only help you on the bullet direction. (And on the fact that you are checking your inputs outside of the Update, which may not works very well)

 public var bullet : GameObject;
  public var speed = 20;
  public var up :Sprite;
  public var right :Sprite;
  public var left :Sprite;
  public var down :Sprite;
  public var UpRight :Sprite;
  public var Upleft :Sprite;
  public var downleft :Sprite;
  public var downRight :Sprite;
  private var currentDirection = Vector3.zero;
  var health = 3;
  var lastShot = 0;
 
 Vector2 dirBullet;
 
  function Start () {
      dirBullet = new Vector2(1,0);
      var r2d : Rigidbody2D = GetComponent("Rigidbody2D");
  }
 
 function Update () {

  var pos = Camera.main.WorldToViewportPoint(transform.position);
  var horizontal = Input.GetAxis("P2Horizontal");
  var vertical = Input.GetAxis("P2Vertical");
  var movement = new Vector2(horizontal, vertical);
 
  if (Input.GetKeyUp("right") && pos.x < .91)
  {                
          if(r2d.velocity.y > 0)
          {
              GetComponent(SpriteRenderer).sprite = UpRight;
              dirBullet = New Vector2(1,1);
          }
          else if(r2d.velocity.y < 0 )
          {
              GetComponent(SpriteRenderer).sprite = downRight;
              dirBullet = New Vector2(1,-1);
          }
          else
          {
              GetComponent(SpriteRenderer).sprite = right;
              dirBullet = New Vector2(1,0);
          }
          r2d.velocity = new Vector3(0f, r2d.velocity.y);
  }
  
  lastShot++;

  r2d.AddForce(movement * speed);

  if (Input.GetKeyDown("return")) {
      if(lastShot > 70)
      {
          var bullet  = Instantiate(bullet,transform.position, Quaternion.identity);
          var velocity = bullet.GetComponent(Rigidbody2D);
          velocity.AddForce(dirBullet * r2d.transform.right * -3);
          lastShot = 0;
      }
  }


Try something like that, and tell me if it works :)

edit: actually, i changed some more things. Like where you declare your variables to be more optimized and readable. But again, there's some things i don't get in your code.

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

71 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

Related Questions

Exit not working properly 1 Answer

Hi, knife hit, how do you control the speed of the wheel and the speed of the knife? 1 Answer

InvokeRepeating time doesn't sync within the same update function 2 Answers

unity2018.2.15f1 build android errors 0 Answers

how do i get rid of this error messege 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