mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fix self illumination color widget in NeL Material script
This commit is contained in:
parent
1140181fe3
commit
b6e703d8f7
1 changed files with 4 additions and 1 deletions
|
@ -595,7 +595,7 @@ plugin material NelMaterial
|
||||||
cpSelfIllumColor.visible = bUseSelfIllumColor
|
cpSelfIllumColor.visible = bUseSelfIllumColor
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
(
|
(
|
||||||
bTwoSided = cbTwoSided.checked
|
bTwoSided = cbTwoSided.checked
|
||||||
cAmbient = cpAmbient.color
|
cAmbient = cpAmbient.color
|
||||||
cDiffuse = cpDiffuse.color
|
cDiffuse = cpDiffuse.color
|
||||||
|
@ -607,6 +607,9 @@ plugin material NelMaterial
|
||||||
pSelfIllumAmount = spSelfIllumAmount.value
|
pSelfIllumAmount = spSelfIllumAmount.value
|
||||||
bUseSelfIllumColor = cbUseSelfIllumColor.checked
|
bUseSelfIllumColor = cbUseSelfIllumColor.checked
|
||||||
|
|
||||||
|
spSelfIllumAmount.visible = not cbUseSelfIllumColor.checked
|
||||||
|
cpSelfIllumColor.visible = cbUseSelfIllumColor.checked
|
||||||
|
|
||||||
delegate.twoSided = bTwoSided
|
delegate.twoSided = bTwoSided
|
||||||
delegate.ambient = cAmbient
|
delegate.ambient = cAmbient
|
||||||
delegate.diffuse = cDiffuse
|
delegate.diffuse = cDiffuse
|
||||||
|
|
Loading…
Reference in a new issue