-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPushArea.cs
33 lines (27 loc) · 895 Bytes
/
PushArea.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PushArea : MonoBehaviour {
public float pushForce;
public float range;//for linear fall off
public bool stun;
public void OnTriggerStay2D(Collider2D other)
{
Rigidbody2D r = other.GetComponentInParent<Rigidbody2D>();
if(r!=null && !r.isKinematic)
{
float dis = Vector2.Distance(transform.position, r.transform.position);
if(dis > range)
return;
r.AddForce(transform.right * pushForce * (1f - (dis/range)), ForceMode2D.Force);
if(dis < range / 2f)
{
Stunnable stunnable = r.GetComponent<Stunnable>();
if(stunnable != null)
{
stunnable.Stun(0.3f);
}
}
}
}
}