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 CrimsonChin · Dec 23, 2013 at 11:22 PM · animation2dcube

Animate a cube width

I have a gameobject > cube which represents the player. What I would like to do is when the player jumps the cube contracts on its x axis and then returns to full width. A bit like its breathing in and then exhales as it jumps. Exactly the same as in the game "thomas was alone".

I tried to do it with a series of flags and if statements but it seemed a little over engineered and didnt work very well. What's the best approach here? Should I be scripting an animation? Should I just stop using the cube and use a sprite animator?

I'm very new to games dev' and programming in a game loop. So, I'm asking for good practice/approach answers. Apologies if it's not a great question.

If it helps this is one of the original attempts I coded before I rage quit:

 void Update()
 {
     if (grounded && Input.GetButtonDown("Fire1"))
     {        
         rigidbody2D.AddForce(transform.up * jumpForce);
     }

     if (!grounded)
     {
         float width = transform.localScale.x;

         Vector3 newScale = transform.localScale;
         if (width > 0.5f)
         {
             newScale.x -= 0.1f;
         }
         else if (width < 0.75f)
         {
             newScale.x += 0.1f;
         }            

         transform.localScale = newScale;
     }
 }

it "pulses" because the game loop causes it to constantly execute. The player has an axis of 0.75 to start and should finish as 0.75. The cube should only contract/expand once.

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

Answer by Jinxology · Dec 24, 2013 at 12:33 AM

I would definitely use an Animation to do this. Just make sure that you make your cube a child of an empty game object if you are going to use the Animation tool.

  1. Make an empty game object

  2. Drag your cube into that object to make it a child

  3. Window > Animation

  4. Select your cube (not the parent), then click the record button in the animation window

  5. Mess around in here to make your animation of your Jump by selecting where in the timeline you want him to get skinny, and where he will be at the end, etc.

  6. Call Animator.Play and pass in the state name (Jump) when you capture the Jump key input.

  7. Profit

Takes some fiddling to get comfortable with the animator.

Comment
Add comment · Show 1 · 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 Spinnernicholas · Dec 24, 2013 at 12:59 AM 0
Share

Good call, Jinxology! I agree!

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

20 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

Related Questions

2D Animation does not start 1 Answer

2D game animation is running 1 Answer

How to create a 2D rig? 1 Answer

SpriteManager 2 1 Answer

Best way to do animate soldier? 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