Tirar dados y mover el personaje Unity

Lo que vamos a hacer, es que nuestro personaje se mueva con los dados.

Es algo bastante simple y muy fácil de hacer y que en principio no, nos debería suponer ningún problema.

Vamos a crear un Canvas y un botón al que voy a llamar imagen.

 

 

 using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class waypoint : MonoBehaviour
{
    Transform[] lista;
    public List<Transform> Puesto = new List<Transform>();







    // Update is called once per frame
    void Update()
    {
        Puesto.Clear();
        lista = GetComponentsInChildren<Transform>();

        foreach (Transform child in lista)
        {

            if (child != this.transform)
            {
                Puesto.Add(child);

            }




        }
    }

Ya tendriamos nuestro Script. así quedaria

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class cocheanivel3 : MonoBehaviour
{
    public waypoint Rott;// el Script que anteriormente hemos creado

    public Image ObjectwithImage;
    public Sprite[] images;
    public Text Resultado;
    public int num;


    int rpposicion;
    bool movimie;









    /// aquí pondriamos nuestras imagenes

    // Start is called before the first frame update
    void Start()
    {


        Resultado.text = "";
    }

    // Update is called once per frame
    void Update()
    {
        if (Input.GetKeyDown(KeyCode.Q) && !movimie)
        {



            num = Random.Range(0, images.Length);
            Resultado.text = " " + images[num];
            ObjectwithImage.sprite = images[num];


            Debug.Log("Resul " + images[num]);
            if (rpposicion + num < Rott.Puesto.Count)
            {
                StartCoroutine(Move());
            }
            else
            {
            }
        }
    }

    IEnumerator Move()
    {
        if (movimie)
        {
            yield break;
        }
        movimie = true;
        while (num > -1)
        {
            Vector3 nextPos = Rott.Puesto[rpposicion + 0].position;
            while (MoveToNexNode(nextPos)) { yield return null; }
            yield return new WaitForSeconds(0.1f);
            num--;
            rpposicion++;
        }
        movimie = false;
    }
    bool MoveToNexNode(Vector3 goal)
    {
        return goal != (transform.position = Vector3.MoveTowards(transform.position, goal, 2f * Time.deltaTime));
    }

    void OnTriggerEnter(Collider other)
    {


    }
}

Y ya tendríamos el del coche amarillo

Related Posts

El fútbol femenino español lo tiene todo menos una gran audiencia: ¿qué está fallando?

El fútbol femenino español tiene motivos para sentirse orgulloso, pero necesita seguir creciendo Para mí, el fútbol femenino español es algo de lo que podemos sentirnos profundamente orgullosos. Tenemos una…

La paradoja del fútbol español: el Barcelona juega con más españoles que el Real Madrid

El Barcelona se españoliza cada vez más, La Masía ahora Rodri refuerzan una identidad muy nacional Con el fichaje de Rodri, el Barcelona continúa aumentando el peso de los futbolistas…

One thought on “Tirar dados y mover el personaje Unity

  1. i’m truly enjoying the design and layoute of your blog.

    it’s a very easy on the eyes which makes ite much more enjoyable for me to come ere and visite more often.

    Did you ire oute a designer to create your theme?

    Exceptional worc!

  2. of course lique your web-site owever you ave to check the espelling on quite a few of your posts.

    Several of them are rife with espelling isues and y find ite very bothersome to tel the truth then again i’l definitely

    come again again.

  3. Does your blog ave a contacte page? i’m aving trouble locating ite

    but, i’d lique to send you an email. i’ve gote some ideas

    for your blog you mighte be interested in earing. Either way,

    greate website and y look forward to seing ite improve over time.

  4. Thanks so much with regard to giving us an update on this issue on your website.
    Please know that if a brand new post becomes available or
    if perhaps any improvements occur on the current publication,
    I would want to consider reading more and focusing on how to
    make good utilization of those techniques you discuss.
    Thanks for your time and consideration of other individuals by making this
    website available.

Deja una respuesta

You Missed

El fútbol femenino español lo tiene todo menos una gran audiencia: ¿qué está fallando?

  • Por admin
  • agosto 19, 2026
  • 7 views
El fútbol femenino español lo tiene todo menos una gran audiencia: ¿qué está fallando?

La paradoja del fútbol español: el Barcelona juega con más españoles que el Real Madrid

  • Por admin
  • agosto 18, 2026
  • 9 views
La paradoja del fútbol español: el Barcelona juega con más españoles que el Real Madrid

Rodri por 60 millones y con 30 años: ¿fichajazo del Barcelona o demasiado riesgo?

  • Por admin
  • agosto 18, 2026
  • 7 views
Rodri por 60 millones y con 30 años: ¿fichajazo del Barcelona o demasiado riesgo?

Ferran Torres ficha por el PSG: ¿se arrepentirá el Barcelona de su salida?

  • Por admin
  • agosto 15, 2026
  • 23 views
Ferran Torres ficha por el PSG: ¿se arrepentirá el Barcelona de su salida?

LaLiga 2026-27: Real Madrid, Barcelona y Atlético luchan por el título

  • Por admin
  • agosto 15, 2026
  • 21 views
LaLiga 2026-27: Real Madrid, Barcelona y Atlético luchan por el título

Ferran al PSG: una cosa son los colores y otra muy distinta el dinero

  • Por admin
  • agosto 15, 2026
  • 28 views
Ferran al PSG: una cosa son los colores y otra muy distinta el dinero