SCRIPT C# PASAR DE NIVEL




https://gamejolt.com/games/ROBOTS_DE_FUEGO/495937

 https://videojuegosenlineaasaco4.blogspot.com/p/animacion-unity-y-blender.html......COMO HICE ESTAS ANIMACIONES DEL VIDEOJUEGO

ROBOTS DE FUEGO
JUEGO COMPLETO DE CARRERAS. INSPIRADO EN LA PELICULA CARROS DE FUEGO.

MOUSE GIRAR, TECLAS W-A-S-D CORRER ESPACIO SALTAR

SCRIPT C#· PARA PASAR NIVEL MEDIANTE TECLADO DEL PC, LO USO PARA EL JUEGO.


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

public class tocateclaycambianivel : MonoBehaviour {

    // Use this for initialization
    void Start () {

    }



    void Update ()
    {


        //if (Input.GetKey(KeyCode.P))

if (Input.GetKey(KeyCode.Escape ))
            //void OnCollisionEnter (){

            //Destroy (gameObject, 0.00f);

Application.LoadLevel (0);

    }
}







No hay comentarios:

Publicar un comentario