I am trying to make my own realistic gravity, and need to access all relavent game objects, but I am having lots of problems
My script is:
----------
public class Gravity : MonoBehaviour
{
public GameObject[] NewGravObj;
public float Grav
// Start is called before the first frame update
void Start()
{
NewGravObj = (Gravity)gameObject.GetComponent(typeof(Gravity));
}
// Update is called once per frame
void Update()
{
for (int i = 0; i< NewGravObj.Length; i++){
if (NewGravObj[i].GetComponent("Gravity")!=null)
{
//Gives easy access to the other Gravity Script
Gravity GravForce = NewGravObj[i].GetComponent("Gravity");
f (GravForce.Grav * Mathf.Pow(1.0f - 0.00002f, Vector3.Distance(transform.position, NewGravObj[i].transform.position)) <= 0.2f) {
}
}
}
}
}
I am running into problems with my only line in Start(), and when I make the GravForce variable. Does anyone know how to create a list of all GameObjects and call a script from a game object?
↧