Package net.minecraft.client.gl
Record Class PostEffectPipeline
java.lang.Object
java.lang.Record
net.minecraft.client.gl.PostEffectPipeline
- Record Components:
internalTargets
-passes
-
@Environment(CLIENT)
public record PostEffectPipeline(Map<Identifier,PostEffectPipeline.Targets> internalTargets, List<PostEffectPipeline.Pass> passes)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/gl/PostEffectPipeline
intermediary net/minecraft/class_9962
official glp
named internalTargets
intermediary comp_3016
official b
named passes
intermediary comp_3017
official c
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final record
static interface
static final record
static final record
static interface
static final record
static final record
static final record
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<PostEffectPipeline> private final Map
<Identifier, PostEffectPipeline.Targets> The field for theinternalTargets
record component.private final List
<PostEffectPipeline.Pass> The field for thepasses
record component. -
Constructor Summary
ConstructorDescriptionPostEffectPipeline
(Map<Identifier, PostEffectPipeline.Targets> map, List<PostEffectPipeline.Pass> list) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theinternalTargets
record component.passes()
Returns the value of thepasses
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
internalTargets
The field for theinternalTargets
record component. -
passes
The field for thepasses
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/client/gl/PostEffectPipeline;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_53111
Lnet/minecraft/class_9962;field_53111:Lcom/mojang/serialization/Codec;
official a
Lglp;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
PostEffectPipeline
public PostEffectPipeline(Map<Identifier, PostEffectPipeline.Targets> map, List<PostEffectPipeline.Pass> list)
-
-
Method Details
-
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)
. -
internalTargets
Returns the value of theinternalTargets
record component.- Returns:
- the value of the
internalTargets
record component
-
passes
Returns the value of thepasses
record component.- Returns:
- the value of the
passes
record component
-