Skip to content

Commit b5b81a0

Browse files
author
Ricardo J. Mendez
committed
Renamed Rope to Chain
1 parent bd2aba6 commit b5b81a0

37 files changed

+4
-4
lines changed

Assets/Scenes/Lightning.unity

100644100755
0 Bytes
Binary file not shown.

Assets/Scripts

Submodule Scripts updated from 541d762 to 4826ddd

Assets/Sources/LightningBolt.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class LightningBolt : MonoBehaviour
2323
float oneOverZigs;
2424

2525
private Particle[] particles;
26-
private Rope[] vehicles;
26+
private Chain[] vehicles;
2727

2828
void Start()
2929
{
@@ -32,12 +32,12 @@ void Start()
3232

3333
particleEmitter.Emit(zigs);
3434
particles = particleEmitter.particles;
35-
vehicles = new Rope[particles.Length];
35+
vehicles = new Chain[particles.Length];
3636
RandomizeParticlePositions();
3737

3838
for(int i = particles.Length - 1; i >= 0; i--)
3939
{
40-
vehicles[i] = new Rope(particles[i].position, 0.1f, null, null);
40+
vehicles[i] = new Chain(particles[i].position, 0.1f, null, null);
4141

4242
vehicles[i].Mass = 0.1f;
4343
vehicles[i].Radius = 0.05f;

Library/AudioManager.asset

100644100755
File mode changed.

Library/BuildSettings.asset

100644100755
File mode changed.

Library/DynamicsManager.asset

100644100755
File mode changed.

Library/FailedAssetImports.txt

100644100755
File mode changed.

Library/InputManager.asset

100644100755
File mode changed.

Library/MonoManager.asset

100644100755
1 Byte
Binary file not shown.

Library/NetworkManager.asset

100644100755
File mode changed.

Library/ProjectSettings.asset

100644100755
File mode changed.

Library/QualitySettings.asset

100644100755
File mode changed.
0 Bytes
Binary file not shown.

Library/ScriptAssemblies/Assembly - CSharp.dll.mdb

100644100755
-7 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

Library/ScriptMapper

100644100755
File mode changed.

Library/TagManager.asset

100644100755
File mode changed.

Library/TimeManager.asset

100644100755
File mode changed.

Library/assetDatabase3

100644100755
5 Bytes
Binary file not shown.

Library/cache/1e/1e07ff5cad11c56fa000929bcf342b59

100644100755
0 Bytes
Binary file not shown.

Library/cache/50/504ad79087be6461bae7b6dc1f235001

100644100755
0 Bytes
Binary file not shown.

Library/cache/ec/eca4676b703b14106b9c090f675ef2ef

100644100755
0 Bytes
Binary file not shown.

Library/guidmapper

100644100755
0 Bytes
Binary file not shown.

Library/metadata/00/00000000000000002000000000000000

100644100755
File mode changed.

Library/metadata/00/00000000000000003000000000000000

100644100755
File mode changed.

Library/metadata/00/00000000000000004000000000000000

100644100755
File mode changed.

Library/metadata/00/00000000000000006000000000000000

100644100755
File mode changed.

Library/metadata/00/00000000000000007000000000000000

100644100755
File mode changed.

Library/metadata/00/00000000000000008000000000000000

100644100755
File mode changed.

Library/metadata/00/00000000000000009000000000000000

100644100755
File mode changed.

Library/metadata/00/0000000000000000a000000000000000

100644100755
File mode changed.

Library/metadata/1e/1e07ff5cad11c56fa000929bcf342b59

100644100755
86 Bytes
Binary file not shown.

Library/metadata/50/504ad79087be6461bae7b6dc1f235001

100644100755
File mode changed.

Library/metadata/ec/eca4676b703b14106b9c090f675ef2ef

100644100755
File mode changed.

0 commit comments

Comments
 (0)