Need the hit.wav to be mono, but now we have a sound we can move around, just not sure how to place it based on the visuals.

This commit is contained in:
Zed A. Shaw 2024-10-28 19:46:55 -04:00
parent 9102bdc8ad
commit 4ed06b10b1
11 changed files with 144 additions and 41 deletions

View file

@ -4,13 +4,10 @@ using namespace fmt;
%%{
machine foo;
main :=
0x1B "["
[0-9]+ @{ println("NUM1"); }
";"
[0-9]+ @{ println("NUM2"); }
"m"
0 @{ res = 1; };
test1 = 0x1B . "[" . [0-9]+ @{ println("NUM1"); } . ";" . [0-9]+ @{ println("NUM2"); } . "m" 0 @{ res = 1; };
test2 = 0x1B "A" [0-9]+ @{ println("NUM1"); } ";" [0-9]+ @{ println("NUM2"); } "m" 0 @{ res = 2; };
main := (test1 | test2);
}%%
%% write data;