diff --git a/.vscode/launch.json b/.vscode/launch.json index f229a72..b279e31 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,7 +4,7 @@ { "type": "lldb", "request": "launch", - "name": "Launch", + "name": "LLDB Launch", "program": "${command:cmake.launchTargetPath}", "args": [], "cwd": "bin/data/" diff --git a/LegitScript/source/ScriptParser.cpp b/LegitScript/source/ScriptParser.cpp index 785b45f..259f633 100644 --- a/LegitScript/source/ScriptParser.cpp +++ b/LegitScript/source/ScriptParser.cpp @@ -22,7 +22,7 @@ namespace ls PreambleSection <- '[' (RendergraphSection / BlendModeSection / DeclarationSection / IncludeSection / NumthreadsSection) ']' RendergraphSection <- 'rendergraph' BlendModeSection <- 'blendmode' ':' BlendMode - BlendMode <- <'alphablend' | 'opaque' | 'additive' | 'multiplicative'> + BlendMode <- <'opaque' | 'alphablend' | 'additive' | 'multiplicative'> DeclarationSection <- 'declaration' ':' String IncludeSection <- 'include' ':' StringArray NumthreadsSection <- 'numthreads' Int3