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
2
Question by nikhil38 · Nov 04, 2012 at 04:08 PM · 2drotationsprite

Rotate a 2D sprite towards target sprite?

Hi guys !

i am making a 2d space shooter . I've got two spaceships , one for player and other for enemy .It's a top down shooting game . I have the player facing top direction and enemy ship facing player that makes enemy at Rotation.z =180 . (upside down)

I'm trying to rotate the enemy sprite towards the player current position and transform towards it .the rotation should be only withing a certain angle window ...i mean it shouldn't be 360 degree rotation..just a sector of 120 degrees .....

But i'm unable to rotate it the way i want...the rotation is not restricted to only z axis with the code i use presently ...

I've just started to learn unity and i ain't that good with trigonometry ...

So help is really needed folks ...

Here's a screenshot !

[1]: /storage/temp/4693-screenshot.png

screenshot.png (270.3 kB)
Comment
Add comment · Show 4
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 Fattie · Nov 04, 2012 at 04:19 PM 0
Share

LookAt is a very handy command. also "Rotate" and also "RotateAround"

hope helps!

avatar image nikhil38 · Nov 05, 2012 at 05:36 AM 0
Share

ahh...i have tried all of these..but nothing seems to work for me...there's rotation but not as i wanted ...

avatar image AlucardJay · Nov 06, 2012 at 09:22 AM -1
Share

This is what you are looking for :

http://docs.unity3d.com/Documentation/ScriptReference/Quaternion.LookRotation.html

This script is set up so the object transform.forward is looking at the target, with the object transform.up facing to the the negative Z axis :

 #pragma strict
 
 public var thePlayer : Transform;
 private var myTransform : Transform;
 
 function Start() 
 {
     if ( thePlayer == null ) {
         Debug.Log( "thePlayer object is missing - " + gameObject.name + " Inspector" );
         thePlayer = GameObject.FindWithTag("Player").transform;
     }
     myTransform = transform;
 }
 
 function Update() 
 {
     var rot : Quaternion = Quaternion.LookRotation( thePlayer.position - myTransform.position, -Vector3.forward );
     myTransform.rotation = rot;
 }
avatar image AlucardJay · Nov 06, 2012 at 10:08 AM 1
Share

After re-reading the question I don't think this is what you want. If I now understand correctly, you want to limit the rotation of the ship to within +- 60' of facing down, but still try and look at the ship?

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

10 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

Related Questions

2D sprite rotation with velocity and interpolation 1 Answer

Change Sprite Origin in 2D 1 Answer

Rotate 2D Sprite Towards Moving Direction 3 Answers

Sprite is a little of when rotating 1 Answer

Rotating a specific axis towards a object 3 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