Skip to content

Commit 55b3973

Browse files
author
Ricardo J. Mendez
committed
Removed unnecessary currentTime parameter
1 parent f14c987 commit 55b3973

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Sources/LightningBolt.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void Update ()
6161
for(int i = particles.Length - 1; i >= 0; i--)
6262
{
6363
vehicles[i].Position = particles[i].position;
64-
vehicles[i].update(Time.time, Time.deltaTime);
64+
vehicles[i].Update(Time.deltaTime);
6565
particles[i].position = vehicles[i].Position;
6666
}
6767

0 commit comments

Comments
 (0)