Informática, pregunta formulada por cvmatias580, hace 2 meses

esta bien este codigo si esta mal ponganme el vueno en sus respuestas
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class porfaquemesalga : MonoBehaviour
{
public float velocity =1;
private Rigidbody2D rb;
// Start is called before the first frame update
void Start()
{
rb=GetComponent ();
}

// Update is called once per frame
void Update()
{
if(Input.GetMouseButtonDown(0))
{
rb.velocity=Vector2.up*velocity;
}
}

private void OnCollisionEnter2D(Collision2D collision)
{

}

Respuestas a la pregunta

Contestado por claraperu
0

Respuesta:

creo que si esta bien

Explicación:

son un poco confusos

Otras preguntas