-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCable.cs
127 lines (111 loc) · 3.81 KB
/
Cable.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
using UnityEngine;
using System.Collections.Generic;
namespace StartFramework.GameplayFramework
{
[RequireComponent(typeof(LineRenderer))]
public class Cable : MonoBehaviour
{
[SerializeField] private float gravity = 30f;
[SerializeField] private int stiffness = 10;
[SerializeField] private bool startPointLock;
[SerializeField] private bool endPointLock;
[SerializeField] private bool isHair; //起始点随父物体移动
private LineRenderer lineRenderer;
private List<Particle> particles = new List<Particle>();
private List<Stick> sticks = new List<Stick>();
private void Start()
{
Initialization();
}
private void FixedUpdate()
{
Simulation();
}
private void LateUpdate()
{
Rendering();
}
private void Initialization()
{
lineRenderer = GetComponent<LineRenderer>();
for (int i = 0; i < lineRenderer.positionCount; i++)
{
Vector3 dot = lineRenderer.GetPosition(i);
particles.Add(new Particle() { position = dot, oldPosition = dot });
}
for (int i = 0; i < particles.Count - 1; i++)
{
sticks.Add(new Stick(particles[i], particles[i + 1]));
}
if (startPointLock)
{
particles[0].locked = true;
}
if (endPointLock)
{
particles[particles.Count - 1].locked = true;
}
if (isHair)
{
particles[0].locked = true;
}
}
private void Simulation()
{
for (int i = 0; i < particles.Count; i++)
{
Particle p = particles[i];
if (p.locked == false)
{
Vector2 temp = p.position;
p.position = p.position + (p.position - p.oldPosition) + Time.fixedDeltaTime * Time.fixedDeltaTime * new Vector2(0, -gravity);
p.oldPosition = temp;
}
}
for (int i = 0; i < stiffness; i++)
{
for (int j = 0; j < sticks.Count; j++)
{
Stick stick = sticks[j];
Vector2 delta = stick.particleB.position - stick.particleA.position;
float deltaLength = delta.magnitude;
float diff = (deltaLength - stick.length) / deltaLength;
if (stick.particleA.locked == false)
stick.particleA.position += 0.5f * diff * delta;
if (stick.particleB.locked == false)
stick.particleB.position -= 0.5f * diff * delta;
}
}
if (isHair)
{
//particles[0].position = transform.position;
particles[0].position = Camera.main.ScreenToWorldPoint(Input.mousePosition);
}
}
private void Rendering()
{
for (int i = 0; i < particles.Count; i++)
{
lineRenderer.SetPosition(i, particles[i].position);
}
}
}
public class Particle
{
public Vector2 position;
public Vector2 oldPosition;
public bool locked;
}
public class Stick
{
public Particle particleA;
public Particle particleB;
public float length;
public Stick(Particle a, Particle b)
{
particleA = a;
particleB = b;
length = (a.position - b.position).magnitude;
}
}
}