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

Messi después del Mundial: la historia de un campeón que siguió intentando tocar el cielo

Lionel Messi: la historia del niño que tuvo que perder muchas veces antes de tocar el cielo La historia de Lionel Messi no es solamente la historia de uno de…

No fue el Mundial de Lamine Yamal: Rodri se convirtió en el verdadero líder de España

España volvió a tocar el cielo y se proclamó campeona del mundo en 2026. Antes de comenzar el torneo, muchas miradas estaban puestas en Lamine Yamal. Por edad, talento, repercusión…

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

Messi después del Mundial: la historia de un campeón que siguió intentando tocar el cielo

  • Por admin
  • julio 27, 2026
  • 5 views
Messi después del Mundial: la historia de un campeón que siguió intentando tocar el cielo

Argentina no perdió por un complot: España fue mejor y hay que aceptarlo

  • Por admin
  • julio 24, 2026
  • 17 views
Argentina no perdió por un complot: España fue mejor y hay que aceptarlo

No fue el Mundial de Lamine Yamal: Rodri se convirtió en el verdadero líder de España

  • Por admin
  • julio 23, 2026
  • 23 views
No fue el Mundial de Lamine Yamal: Rodri se convirtió en el verdadero líder de España

Jugadores que ganaron el Mundial antes de los 20 años: la lista histórica

  • Por admin
  • julio 22, 2026
  • 34 views
Jugadores que ganaron el Mundial antes de los 20 años: la lista histórica

Mbappé vs Lamine Yamal: ¿quién es mejor?

  • Por admin
  • julio 21, 2026
  • 42 views
Mbappé vs Lamine Yamal: ¿quién es mejor?

Lamine Yamal 2026: ¿El nuevo rey del fútbol mundial?

  • Por admin
  • julio 21, 2026
  • 33 views
Lamine Yamal 2026: ¿El nuevo rey del fútbol mundial?