- Aggiunti HeadCut e SplitCut a Identify

- Piccole correzioni lettura e salvataggio strategie lette da JSON su Vproc
This commit is contained in:
andrea.villa
2024-04-19 10:33:28 +02:00
parent 7193f2595d
commit bdc7c45204
2 changed files with 17 additions and 2 deletions
+15
View File
@@ -5,6 +5,21 @@
-- Tabella per definizione modulo
local Identity = {}
---------------------------------------------------------------------
------------------ EGALWARE FEATURES ------------------------------
---------------------------------------------------------------------
-- Feature : Head Cut
function Identity.IsHeadCut( Proc)
return ( Proc.Grp == 1 and Proc.Prc == 340)
end
---------------------------------------------------------------------
-- Feature : Split Cut
function Identity.IsSplitCut( Proc)
return ( Proc.Grp == 2 and Proc.Prc == 350)
end
---------------------------------------------------------------------
------------------ STANDARD FEATURES ------------------------------
---------------------------------------------------------------------
-- Feature : Cut
function Identity.IsCut( Proc)