Uses of Class
com.badlogic.gdx.graphics.g3d.Attribute
-
Packages that use Attribute Package Description com.badlogic.gdx.graphics.g3d com.badlogic.gdx.graphics.g3d.attributes -
-
Uses of Attribute in com.badlogic.gdx.graphics.g3d
Fields in com.badlogic.gdx.graphics.g3d with type parameters of type Attribute Modifier and Type Field Description protected Array<Attribute>Attributes. attributesMethods in com.badlogic.gdx.graphics.g3d with type parameters of type Attribute Modifier and Type Method Description <T extends Attribute>
TAttributes. get(java.lang.Class<T> clazz, long type)Example usage: ((BlendingAttribute)material.get(BlendingAttribute.ID)).sourceFunction;Methods in com.badlogic.gdx.graphics.g3d that return Attribute Modifier and Type Method Description abstract AttributeAttribute. copy()AttributeAttributes. get(long type)Example usage: ((BlendingAttribute)material.get(BlendingAttribute.ID)).sourceFunction;Methods in com.badlogic.gdx.graphics.g3d that return types with arguments of type Attribute Modifier and Type Method Description Array<Attribute>Attributes. get(Array<Attribute> out, long type)Get multiple attributes at once.java.util.Iterator<Attribute>Attributes. iterator()Used for iterating through the attributesMethods in com.badlogic.gdx.graphics.g3d with parameters of type Attribute Modifier and Type Method Description intAttributes. compare(Attribute arg0, Attribute arg1)Used for sorting attributes by type (not by value)protected booleanAttribute. equals(Attribute other)voidAttributes. set(Attribute attribute)Add a attribute to this material.voidAttributes. set(Attribute... attributes)Add an array of attributes to this material.voidAttributes. set(Attribute attribute1, Attribute attribute2)Add multiple attributes to this material.voidAttributes. set(Attribute attribute1, Attribute attribute2, Attribute attribute3)Add multiple attributes to this material.voidAttributes. set(Attribute attribute1, Attribute attribute2, Attribute attribute3, Attribute attribute4)Add multiple attributes to this material.Method parameters in com.badlogic.gdx.graphics.g3d with type arguments of type Attribute Modifier and Type Method Description Array<Attribute>Attributes. get(Array<Attribute> out, long type)Get multiple attributes at once.voidAttributes. set(java.lang.Iterable<Attribute> attributes)Add an array of attributes to this material.Constructors in com.badlogic.gdx.graphics.g3d with parameters of type Attribute Constructor Description Material(Attribute... attributes)Create a material with the specified attributesMaterial(java.lang.String id, Attribute... attributes)Create a material with the specified attributesConstructor parameters in com.badlogic.gdx.graphics.g3d with type arguments of type Attribute Constructor Description Material(Array<Attribute> attributes)Create a material with the specified attributesMaterial(java.lang.String id, Array<Attribute> attributes)Create a material with the specified attributes -
Uses of Attribute in com.badlogic.gdx.graphics.g3d.attributes
Subclasses of Attribute in com.badlogic.gdx.graphics.g3d.attributes Modifier and Type Class Description classBlendingAttributeclassColorAttributeclassCubemapAttributeclassDepthTestAttributeclassDirectionalLightsAttributeclassFloatAttributeclassIntAttributeclassPointLightsAttributeclassSpotLightsAttributeclassTextureAttributeMethods in com.badlogic.gdx.graphics.g3d.attributes that return Attribute Modifier and Type Method Description AttributeColorAttribute. copy()AttributeCubemapAttribute. copy()AttributeDepthTestAttribute. copy()AttributeFloatAttribute. copy()AttributeIntAttribute. copy()AttributeTextureAttribute. copy()Methods in com.badlogic.gdx.graphics.g3d.attributes with parameters of type Attribute Modifier and Type Method Description intBlendingAttribute. compareTo(Attribute o)intColorAttribute. compareTo(Attribute o)intCubemapAttribute. compareTo(Attribute o)intDepthTestAttribute. compareTo(Attribute o)intDirectionalLightsAttribute. compareTo(Attribute o)intFloatAttribute. compareTo(Attribute o)intIntAttribute. compareTo(Attribute o)intPointLightsAttribute. compareTo(Attribute o)intSpotLightsAttribute. compareTo(Attribute o)intTextureAttribute. compareTo(Attribute o)
-