I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX

Difference between revisions of "UE2:ColorModifier (UT2003)"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
(Auto-generated page)
 
(same as UT2004, minus defprops)
 
Line 1: Line 1:
{{infobox class
+
{{UE2:ColorModifier (UT2004)}}
| package = Engine
+
| parent1 = Modifier
+
| parent2 = Material
+
| parent3 = Object
+
}}
+
{{autogenerated}}
+
null
+
 
+
==Properties==
+
===Property group 'ColorModifier'===
+
====AlphaBlend====
+
'''Type:''' [[bool]]
+
 
+
<!-- enter variable description -->
+
 
+
'''Default value:''' True
+
 
+
====Color====
+
'''Type:''' {{tl|Color|Object|structs}}
+
 
+
<!-- enter variable description -->
+
 
+
'''Default value:'''
+
{| class="list defaults"
+
! {{tl|Color||Object structs|Member}}
+
! Value
+
|-
+
| A
+
| 255
+
|-
+
| B
+
| 255
+
|-
+
| G
+
| 255
+
|-
+
| R
+
| 255
+
|}
+
 
+
====RenderTwoSided====
+
'''Type:''' [[bool]]
+
 
+
<!-- enter variable description -->
+
 
+
'''Default value:''' True
+

Latest revision as of 00:36, 27 July 2009

UT2003 Object >> Material >> Modifier >> ColorModifier
Package: 
Engine
This class in other games:
U2, U2XMP, UE2Runtime, UT2004

Changes the rendering color of a material. This is similar to drawing the material to a Canvas with a DrawColor other than white. The results of a ColorModifier aren't particularly "stable". In fact, Shaders and Combiners may revert the ColorModifier's effects.

Using a Combiner with CombineOperation = CO_Multiply and a ConstantColor or plain-color Texture as the second material has the same visual result, but is more likely to "survive" additional modifiers.

Properties[edit]

Property group 'ColorModifier'[edit]

AlphaBlend[edit]

Type: bool

Whether the result should be alpha-blended.

Default value: True

Color[edit]

Type: Object.Color

The color to use when rendering the material. White means render unchanged, lower RGB values darken the corresponding RGB channels of the material.

Default value:

Member Value
A 255
B 255
G 255
R 255

RenderTwoSided[edit]

Type: bool

Whether the material should be rendered two-sided.

Default value: True