Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 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 /
  • Help Room /
avatar image
0
Question by CianLarkan · Nov 22, 2016 at 12:20 PM · movementvector3platformeasy

How to make a platform move between multiple points?

So I thought this would've worked, but for whatever reason when i press play the platform decides "Hey thats some nice points you've got there, I'm going to comepletely ignore them and go to some random position in the world"

I've triple checked everything in the inspector, made sure the points are empty gameobjects, everything is assigned, messed around with the allowence and still nothing seems to work.

I've attached my code here and for the life of me I can't figure out where I'm going wrong. Any help would be appreciated!

Cheers

 public class MultiPointPlatform : MonoBehaviour 
 {
     public Transform[] points;
     int destPoint;
     public float allowence = 5f;
 
     // Use this for initialization
     void Start () 
     {
         // Set first target
         UpdateTarget ();
     }
     
     // Update is called once per frame
     void Update () 
     {
         // Update this position
         Vector3 thisPos = new Vector3 (transform.position.x, transform.position.y, transform.position.z);
 
 
         // Distance between current position and next position < alloence
         if (Vector3.Distance(thisPos, points[destPoint].position) < allowence)
         {
             UpdateTarget();
         }
             
         Debug.Log (points [destPoint].position);
     }
 
     void UpdateTarget()
     {
         if (points.Length == 0)
         {
             return;
         }
         transform.Translate(points [destPoint].position);
         destPoint = (destPoint + 1) % points.Length;
 
     }
 }
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 doublemax · Nov 22, 2016 at 03:42 PM

transform.Translate adds the vector to the current position.

If you just want to set a new position, try;

 transform.position = points [destPoint].position;
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 fonko · Jul 24, 2018 at 03:01 PM

@CianLarkan this works:

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class MovingPlatform : MonoBehaviour
 {
     public Transform[] points;
     int destPoint;
     public float allowence = 5f;
 
     // Use this for initialization
     void Start()
     {
         // Set first target
         UpdateTarget();
     }
 
     // Update is called once per frame
     void Update()
     {
         // Update this position
         Vector3 thisPos = new Vector3(transform.position.x, transform.position.y, transform.position.z);
 
 
         // Distance between current position and next position < alloence
         if (Vector3.Distance(thisPos, points[destPoint].position) < allowence)
         {
             UpdateTarget();
         }
 
         transform.position = Vector3.Lerp(transform.position, points[destPoint].position, 3 * Time.deltaTime);
     }
 
     void UpdateTarget()
     {
         if (points.Length == 0)
         {
             return;
         }
         transform.position = points[destPoint].position;
         destPoint = (destPoint + 1) % points.Length;
 
     }
 }
 
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

99 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 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

GameObject doesn't move 1 Answer

Smooth Forward Movement with a CoRoutine 1 Answer

Vector3.Lerp not moving object backwards 0 Answers

Smoother grid based movement using coroutines and lerp 0 Answers

Wall sliding with characterController against an edge 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