Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EsProgram committed Jan 23, 2018
1 parent 3fb9147 commit 43ed847
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/WaveformProvider/Script/WaveConductor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class WaveConductor : MonoBehaviour
/// <summary>
/// Adjusts the wave attenuation factor.
/// </summary>
[Range(0.1f, 0.98f)]
[Range(0.1f, 1f)]
public float attenuation = 0.96f;

/// <summary>
Expand Down Expand Up @@ -256,7 +256,7 @@ private void WaveUpdate()
{
#region Check whether to process

if(!update)
if (!update)
return;

if (Time.frameCount % updateFrameTiming != 0)
Expand Down
Binary file modified WaveformProvider.unitypackage
Binary file not shown.

0 comments on commit 43ed847

Please sign in to comment.