com.supermap.data
类 PBRAlphaModeType

java.lang.Object
  继承者 com.supermap.data.Enum
      继承者 com.supermap.data.PBRAlphaModeType

public class PBRAlphaModeType
extends Enum

该枚举定义了PBR材质的Alpha值枚举类型常量。


字段摘要
static PBRAlphaModeType BLEND
          片元的alpha值输出baseColor的alpha值
static PBRAlphaModeType MASK
          片元进行alpha过滤
static PBRAlphaModeType OPAQUE
          片元中alpha值输出为1.0
static PBRAlphaModeType UNKNOWN
          未知类型。
 
方法摘要
 
从类 com.supermap.data.Enum 继承的方法
equals, getEnums, getNameByValue, getNames, getPredefineValues, getValueByName, getValues, hashCode, isDefined, isDefined, name, parse, parse, toString, value
 
从类 java.lang.Object 继承的方法
getClass, notify, notifyAll, wait, wait, wait
 

字段详细信息

UNKNOWN

public static final PBRAlphaModeType UNKNOWN
未知类型。


OPAQUE

public static final PBRAlphaModeType OPAQUE
片元中alpha值输出为1.0


MASK

public static final PBRAlphaModeType MASK
片元进行alpha过滤


BLEND

public static final PBRAlphaModeType BLEND
片元的alpha值输出baseColor的alpha值