Files
BoostBaller/Assets/Scripts/ForceZone.cs

27 lines
654 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ForceZone : MonoBehaviour
{
public float force = 0;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
private void OnTriggerStay(Collider other)
{
Vector3 direction = other.transform.position - this.transform.position;
Debug.DrawRay(this.transform.position, direction);
other.transform.GetComponent<Rigidbody>().AddForce(direction.normalized * this.force * Time.deltaTime, ForceMode.Impulse);
}
}