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 jacek331 · Oct 31, 2017 at 02:44 PM · 2d gamemovinggameobject

2d moving by button one by one

Hi. Im trying to do game. I want take a way for moving by set and special blocks. Problem is if i use for example blocks for 'south' and 'east' he is just moving accross not one by one, first to south, then to east. Anyone know how to fix it? Here is my code:

          void check(){
              //s = GetComponent<Slot>();
              for (int i = 0; i < 14; i++) {
                  listaaa.Add (GameObject.Find ("Slot" + i));
                  print ("Slot"+i+" dodany do listy");
              }
              GameObject go = GameObject.Find("professor");
              animator = go.GetComponent<Animator>();
              foreach (GameObject item in listaaa) {
                  if (item.transform.childCount > 0) {
                      if (item.transform.GetChild (0).name == "East") 
                      {
                          animator.SetInteger ("Direction", 3);
                          listawektorow.Add(new Vector3(4,0,0));
                          print ("poszedl w prawo");
                      }
                      if (item.transform.GetChild (0).name == "West") 
                      {
                          animator.SetInteger("Direction", 1);
                          go.transform.Translate (Vector3.left * 4);
                          print ("poszedl w lewo");
                      }
                      if (item.transform.GetChild (0).name == "North") 
                      {
                          animator.SetInteger("Direction", 2);
                          go.transform.Translate (Vector3.up * 4);
                          print ("poszedl w gore");
                      }
                      if (item.transform.GetChild (0).name == "South") 
                      {
                          animator.SetInteger("Direction", 0);
                          listawektorow.Add (new Vector3(0,-4,0));
                          print ("poszedl w dol");
                      }
                  }
              }
              listaaa.Clear ();
              dlwek = listawektorow.Count;
              for (int i = 0; i < dlwek; i++)
              {            
                  relativeLocation = listawektorow[i];
                  float timeDelta = 0.05f;
                  Vector3 targetLocation = go.transform.position + relativeLocation;
                  this.StartCoroutine (SmoothMove (targetLocation, timeDelta));
              }
              listawektorow.Clear ();
          }

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

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

78 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

Related Questions

How to make an 2d object jump from A point to B point? 0 Answers

How to decide an object's position when using Instantiate? 1 Answer

How can I force a device to recognize touches from large surfaces like the bottom of a hand? 0 Answers

How to make lane switching in mobile endless runner using UI buttons? 1 Answer

How to smooth out character Roll in a Top-down 2D movement 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