Remove unnecessary comments.

This commit is contained in:
2025-07-26 22:34:09 +02:00
parent 19d0caa0b7
commit 778f43e597
2 changed files with 4 additions and 2 deletions

View File

@@ -68,8 +68,8 @@ public partial class AudioFileAnalyzer : Node
// Read the raw bytes for the current sample // Read the raw bytes for the current sample
reader.Read(buffer, 0, buffer.Length); reader.Read(buffer, 0, buffer.Length);
// Convert the byte array to a 16-bit sample (assuming 16-bit PCM) // Convert the byte array to a 16-bit sample
short sample = BitConverter.ToInt16(buffer, 0); // Assuming 16-bit signed samples short sample = BitConverter.ToInt16(buffer, 0);
waveformInfo.Samples[sampleIndex++] = (float)sample / short.MaxValue; waveformInfo.Samples[sampleIndex++] = (float)sample / short.MaxValue;
} }

View File

@@ -140,6 +140,7 @@ size_flags_horizontal = 3
size_flags_vertical = 3 size_flags_vertical = 3
[node name="LeftDock" type="Container" parent="VBoxContainer/VSplitContainer/HSplitContainer"] [node name="LeftDock" type="Container" parent="VBoxContainer/VSplitContainer/HSplitContainer"]
z_index = 2
custom_minimum_size = Vector2(200, 0) custom_minimum_size = Vector2(200, 0)
layout_mode = 2 layout_mode = 2
size_flags_horizontal = 3 size_flags_horizontal = 3
@@ -187,3 +188,4 @@ mouse_filter = 2
script = ExtResource("11_gc3ui") script = ExtResource("11_gc3ui")
[connection signal="clip_added" from="VBoxContainer/VSplitContainer/HSplitContainer/Timeline" to="ProjectController" method="CreateAudioClipPreview"] [connection signal="clip_added" from="VBoxContainer/VSplitContainer/HSplitContainer/Timeline" to="ProjectController" method="CreateAudioClipPreview"]
[connection signal="AudioClipDropped" from="ProjectController" to="VBoxContainer/VSplitContainer/HSplitContainer/Timeline" method="clip_dropped"]