ArenaShooter/Assets/BulletStuff.cs
Balazs Toldi 27114e4d86
Fixed git ignore
Removed Visual Studio stuff, because metadata files were not uploaded correctly
2021-06-22 20:29:23 +02:00

13 lines
279 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BulletStuff : MonoBehaviour {
public Rigidbody rb;
// Update is called once per frame
void Update()
{
rb.AddForce(transform.forward*Time.deltaTime);
}
}