summaryrefslogtreecommitdiff
path: root/Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2020-10-24 17:30:07 +0800
committerchai <chaifix@163.com>2020-10-24 17:30:07 +0800
commit65ed53a40f990e895305ff17a5e48e3cd6b8785b (patch)
tree3333c6a9b19fa5602fd8827e582273f602452bec /Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs
parent56a9b3bf4edc56e9c1dd502a469a7a0167751215 (diff)
*物理系统
Diffstat (limited to 'Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs')
-rw-r--r--Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs b/Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs
deleted file mode 100644
index b3932cc6..00000000
--- a/Assets/Art/Vfx/GrabSquaresEffect/Scripts/Point.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using UnityEngine;
-
-namespace Assets.MoveableLineRenderer.Scripts
-{
- internal sealed class Point
- {
- public Vector3 Position;
- private readonly float _timeCreated;
-
- public Point(Vector3 position)
- {
- Position = position;
- _timeCreated = Time.time;
- }
-
- public float TimeAlive
- {
- get { return Time.time - _timeCreated; }
- }
- }
-} \ No newline at end of file