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

¿Por qué hablamos tanto de Lamine si Raphinha está siendo el mejor del Barcelona?

Raphinha, el gran olvidado del Barcelona: cuando el marketing pesa más que el rendimiento Raphinha me parece uno de los grandes olvidados de este Barcelona, y sinceramente creo que es…

Lamine tiene el futuro, pero el presente del Barcelona se llama Raphinha

El Barça gana 5-2, Lamine vuelve a marcar, pero para mí el alma de este equipo sigue siendo Raphinha Ayer el Barcelona ganó 5-2 al Rayo Vallecano y, evidentemente, estamos…

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

¿Por qué hablamos tanto de Lamine si Raphinha está siendo el mejor del Barcelona?

  • Por admin
  • septiembre 3, 2026
  • 19 views
¿Por qué hablamos tanto de Lamine si Raphinha está siendo el mejor del Barcelona?

Lamine tiene el futuro, pero el presente del Barcelona se llama Raphinha

  • Por admin
  • septiembre 1, 2026
  • 22 views
Lamine tiene el futuro, pero el presente del Barcelona se llama Raphinha

El tiempo también gana a Messi: Argentina dice adiós a una leyenda irrepetible

  • Por admin
  • septiembre 1, 2026
  • 22 views
El tiempo también gana a Messi: Argentina dice adiós a una leyenda irrepetible

Raphinha y diez más: el Barça gana, pero Lamine Yamal vuelve a dejar dudas

  • Por admin
  • agosto 28, 2026
  • 25 views
Raphinha y diez más: el Barça gana, pero Lamine Yamal vuelve a dejar dudas

Cuando Mbappé y Vinícius juegan el uno para el otro, el Real Madrid es otro equipo

  • Por admin
  • agosto 27, 2026
  • 43 views
Cuando Mbappé y Vinícius juegan el uno para el otro, el Real Madrid es otro equipo

Lamine Yamal no es Messi ni Cristiano: dejémosle escribir su propia historia

  • Por admin
  • agosto 27, 2026
  • 30 views
Lamine Yamal no es Messi ni Cristiano: dejémosle escribir su propia historia