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 direcalmly · Jul 29, 2014 at 03:58 AM · 2drotationspritegravitytrigonometry

Ground checking with a frequently rotating player

Hey yall

I'm new to the Unity interface and I've been working in 2D to create a demo for a game that includes being able to rotate the gravity field of the player. Basically the player has the option to rotate in 90 degree increments with the L/R buttons on the controller (like the game "And Yet it Moves") and gravity is relative to which direction the sprite is facing. The player can jump and I'm looking for a way to set a ground check position.

Trig will work, but I'm wondering if there's some other way that Unity can handle the situation. I drew a little picture:

gC pic

I imagine that people making side-scrolling snowboarding games run into something similar. Setting the gC position to the parent's transform.position.y - 3f or something like that doesn't allow it to rotate freely with the parent. My idea right now is to get the angle via eulerAngles.w and draw up an equation that will give me the offset x and y components and I can set this gC point relative to the parent's transform.

Is there an easier way to do this or is it soh cah toa time?

unity-gc-forum-thing.png (22.2 kB)
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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by prof · Jul 29, 2014 at 05:47 AM

Make empty gameobject(gC point). Set your sprite as a child. Ajust sprite local position (legs should be at gC point). That's pretty much it). All movement/rotation should be applyed to parent object. Spite will rotate correctly.

P.S. my engris suck)

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
avatar image
0

Answer by direcalmly · Jul 29, 2014 at 06:09 AM

What I ended up doing was setting a Raycast:

 if (Physics2D.Raycast (new Vector2(transform.position.x,transform.position.y), -transform.up, 3.05f, 1 << LayerMask.NameToLayer ("Ground")) ) {
             IsGrounded = true;
         }
         else {
             IsGrounded = false;
         }

I was working with Linecast, which only lets you set a start and end position. With Raycast you can set a direction (-transform.up) and a distance which works perfectly for this example.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

2D Sprite Rotation 0 Answers

How to get animated sprite to adhere to gravity? 2 Answers

Rotating a Sprite to face mouse / target? 2 Answers

Trying to rotate a 2D sprite 2 Answers

Sprite changing position during rotation...bug? 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