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:
parent
9102bdc8ad
commit
4ed06b10b1
11 changed files with 144 additions and 41 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue