Package net.minecraft.client.gl
Record Class PostEffectPipeline.Uniform
java.lang.Object
java.lang.Record
net.minecraft.client.gl.PostEffectPipeline.Uniform
- Record Components:
name
-type
-values
-
- Enclosing class:
PostEffectPipeline
@Environment(CLIENT)
public static record PostEffectPipeline.Uniform(String name, String type, Optional<List<Float>> values)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/gl/PostEffectPipeline$Uniform
intermediary net/minecraft/class_9962$class_9970
official grs$h
named name
intermediary comp_3032
official b
named type
intermediary comp_3720
official c
named values
intermediary comp_3033
official d
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
apply
(RenderPass pass) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.values()
Returns the value of thevalues
record component.
-
Field Details
-
name
The field for thename
record component. -
type
The field for thetype
record component. -
values
The field for thevalues
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/client/gl/PostEffectPipeline$Uniform;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_53120
Lnet/minecraft/class_9962$class_9970;field_53120:Lcom/mojang/serialization/Codec;
official a
Lgrs$h;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
Method Details
-
apply
- Mappings:
Namespace Name Mixin selector named apply
Lnet/minecraft/client/gl/PostEffectPipeline$Uniform;apply(Lcom/mojang/blaze3d/systems/RenderPass;)V
intermediary method_68482
Lnet/minecraft/class_9962$class_9970;method_68482(Lcom/mojang/blaze3d/systems/RenderPass;)V
official a
Lgrs$h;a(Lcom/mojang/blaze3d/systems/RenderPass;)V
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
values
Returns the value of thevalues
record component.- Returns:
- the value of the
values
record component
-