mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Revert "Start separating "lineAAEnable""
This reverts commit 759cea424c.
This commit is contained in:
parent
6adcf619b0
commit
277682c03d
1 changed files with 1 additions and 11 deletions
12
openpype/vendor/python/common/capture.py
vendored
12
openpype/vendor/python/common/capture.py
vendored
|
|
@ -361,6 +361,7 @@ Viewport2Options = {
|
|||
"floatingPointRTFormat": 1,
|
||||
"gammaCorrectionEnable": False,
|
||||
"gammaValue": 2.2,
|
||||
"lineAAEnable": False,
|
||||
"maxHardwareLights": 8,
|
||||
"motionBlurEnable": False,
|
||||
"motionBlurSampleCount": 8,
|
||||
|
|
@ -382,10 +383,6 @@ Viewport2Options = {
|
|||
"vertexAnimationCache": 0
|
||||
}
|
||||
|
||||
Viewport2OAAoption = {
|
||||
"lineAAenable": False,
|
||||
}
|
||||
|
||||
|
||||
def apply_view(panel, **options):
|
||||
"""Apply options to panel"""
|
||||
|
|
@ -499,13 +496,6 @@ def parse_view(panel):
|
|||
except ValueError:
|
||||
continue
|
||||
|
||||
for key in Viewport2OAAoption.keys():
|
||||
attr = "hardwareRenderingGlobals.{0}".format(key)
|
||||
try:
|
||||
viewport2_options[key] = cmds.getAttr(attr)
|
||||
except ValueError:
|
||||
continue
|
||||
|
||||
return {
|
||||
"camera": camera,
|
||||
"display_options": display_options,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue