Skip to content

Commit

Permalink
Fixed blend modes
Browse files Browse the repository at this point in the history
  • Loading branch information
Raikiri committed Oct 21, 2024
1 parent 6d39911 commit 3198646
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"name": "LLDB Launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "bin/data/"
Expand Down
2 changes: 1 addition & 1 deletion LegitScript/source/ScriptParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3198646

Please sign in to comment.