mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
Fix lambda scope for postprocess bindings
This commit is contained in:
parent
df57f8004b
commit
6747619cb1
@ -51,7 +51,7 @@ namespace MWLua
|
||||
{
|
||||
return [context](const Shader& shader, const std::string& name, const T& value) {
|
||||
context.mLuaManager->addAction(
|
||||
[&] {
|
||||
[=] {
|
||||
MWBase::Environment::get().getWorld()->getPostProcessor()->setUniform(shader.mShader, name, value);
|
||||
},
|
||||
"SetUniformShaderAction");
|
||||
@ -84,7 +84,7 @@ namespace MWLua
|
||||
}
|
||||
|
||||
context.mLuaManager->addAction(
|
||||
[&] {
|
||||
[=] {
|
||||
MWBase::Environment::get().getWorld()->getPostProcessor()->setUniform(shader.mShader, name, values);
|
||||
},
|
||||
"SetUniformShaderAction");
|
||||
|
Loading…
Reference in New Issue
Block a user