Jump to content

[SOLVED] using consol ::render_filmic_linear_scale, render_exposure in Syncker system


photo

Recommended Posts

I want the brightness or contrast ratio to be changed separately in the slave channel.

However, the slave channel seems to be synchronized with the setting of the master channel unconditionally.

 

Console::setFloat("render_exposure", value1 +0.9f);
Console::setFloat("render_filmic_linear_scale", 1 - value2);

^ These methods are not working in slave channel.

 

Can the brightness and contrast ratio of slave channels be asynchronous?

Link to comment

I found setSkipFlags (flags); method in the document.

Does adding "render" to the flag parameter solve this problem?

 

AppSystemLogic::ig_manager->getSynckerSlave()->setSkipFlags(Plugins::Syncker::Slave::SKIP_FLAGS::RENDER);

Edited by dongju.jeong
  • Like 1
Link to comment
2 hours ago, dongju.jeong said:

setSkipFlags (flags); method in the document.

Does adding "render" to the flag parameter solve this problem?

yes, you are right. this flag disables synchronization for render_* parameters.

Link to comment
  • silent changed the title to [SOLVED] using consol ::render_filmic_linear_scale, render_exposure in Syncker system
×
×
  • Create New...