Created
December 19, 2022 07:38
-
-
Save AmmarTee/aabd070b49c8cf84c24754717722b583 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class addVelocity : MonoBehaviour | |
{ | |
// Start is called before the first frame update | |
public float force; | |
// Update is called once per frame | |
void Update() | |
{ | |
this.transform.position = new Vector3(this.transform.position.x,this.transform.position.y,this.transform.position.z+force); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment