Skip to content

Commit 43ed847

Browse files
committed
fix
1 parent 3fb9147 commit 43ed847

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed
File renamed without changes.
File renamed without changes.

Assets/WaveformProvider/Script/WaveConductor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class WaveConductor : MonoBehaviour
4242
/// <summary>
4343
/// Adjusts the wave attenuation factor.
4444
/// </summary>
45-
[Range(0.1f, 0.98f)]
45+
[Range(0.1f, 1f)]
4646
public float attenuation = 0.96f;
4747

4848
/// <summary>
@@ -256,7 +256,7 @@ private void WaveUpdate()
256256
{
257257
#region Check whether to process
258258

259-
if(!update)
259+
if (!update)
260260
return;
261261

262262
if (Time.frameCount % updateFrameTiming != 0)

WaveformProvider.unitypackage

217 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)