Record Class RenderSource.BasePlayer
java.lang.Object
java.lang.Record
kr.toxicity.model.api.data.renderer.RenderSource.BasePlayer
- Record Components:
entity- the player entity
- All Implemented Interfaces:
RenderSource<EntityTracker>, RenderSource.Entity, Profiled
- Enclosing interface:
RenderSource<T extends Tracker>
public static record RenderSource.BasePlayer(BasePlayer entity)
extends Record
implements RenderSource.Entity, Profiled
A basic implementation of
RenderSource.Entity wrapping a BasePlayer.- Since:
- 1.15.2
-
Nested Class Summary
Nested classes/interfaces inherited from interface RenderSource
RenderSource.BaseDummy, RenderSource.BaseEntity, RenderSource.BasePlayer, RenderSource.Dummy, RenderSource.Entity, RenderSource.ProfiledDummy, RenderSource.ProfiledEntity, RenderSource.ProfiledPlayer -
Constructor Summary
ConstructorsConstructorDescriptionBasePlayer(BasePlayer entity) Creates an instance of aBasePlayerrecord class. -
Method Summary
Modifier and TypeMethodDescription@NotNull PlayerArmorarmors()Returns the armor equipment of the entity.@NotNull CompletableFuture<BoneRenderContext> Asynchronously completes the bone render context for this source.@NotNull EntityTrackercreate(@NotNull RenderPipeline pipeline, @NotNull TrackerModifier modifier, @NotNull Consumer<EntityTracker> preUpdateConsumer) Creates a new tracker for this render source.entity()Returns the value of theentityrecord component.final booleanIndicates whether some other object is "equal to" this one.@NotNull EntityTrackergetOrCreate(@NotNull String name, @NotNull Supplier<RenderPipeline> supplier, @NotNull TrackerModifier modifier, @NotNull Consumer<EntityTracker> preUpdateConsumer) Gets or creates an entity tracker for this source.final inthashCode()Returns a hash code value for this object.@NotNull PlatformLocationlocation()Returns the location of this render source.@NotNull ModelProfileprofile()Returns the model profile (skin) of the entity.@NotNull PlayerSkinPartsReturns the skin customization parts (e.g., jacket, hat) of the entity.final StringtoString()Returns a string representation of this record class.Methods inherited from interface RenderSource
fallbackContext
-
Constructor Details
-
BasePlayer
Creates an instance of aBasePlayerrecord class.- Parameters:
entity- the value for theentityrecord component
-
-
Method Details
-
create
@NotNull public @NotNull EntityTracker create(@NotNull @NotNull RenderPipeline pipeline, @NotNull @NotNull TrackerModifier modifier, @NotNull @NotNull Consumer<EntityTracker> preUpdateConsumer) Description copied from interface:RenderSourceCreates a new tracker for this render source.- Specified by:
createin interfaceRenderSource<EntityTracker>- Parameters:
pipeline- the render pipeline to usemodifier- the tracker modifierpreUpdateConsumer- a consumer to run before updates- Returns:
- the created tracker
-
getOrCreate
@NotNull public @NotNull EntityTracker getOrCreate(@NotNull @NotNull String name, @NotNull @NotNull Supplier<RenderPipeline> supplier, @NotNull @NotNull TrackerModifier modifier, @NotNull @NotNull Consumer<EntityTracker> preUpdateConsumer) Description copied from interface:RenderSource.EntityGets or creates an entity tracker for this source.- Specified by:
getOrCreatein interfaceRenderSource.Entity- Parameters:
name- the name of the trackersupplier- a supplier for the render pipelinemodifier- the tracker modifierpreUpdateConsumer- a consumer to run before updates- Returns:
- the entity tracker
-
location
Description copied from interface:RenderSourceReturns the location of this render source.- Specified by:
locationin interfaceRenderSource<EntityTracker>- Returns:
- the location
-
completeContext
Description copied from interface:RenderSourceAsynchronously completes the bone render context for this source.This method may involve fetching skin data or other resources.
- Specified by:
completeContextin interfaceRenderSource<EntityTracker>- Returns:
- a future completing with the bone render context
-
profile
Description copied from interface:ProfiledReturns the model profile (skin) of the entity. -
armors
Description copied from interface:ProfiledReturns the armor equipment of the entity. -
skinParts
Description copied from interface:ProfiledReturns the skin customization parts (e.g., jacket, hat) of the entity. -
toString
-
hashCode
-
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). -
entity
Returns the value of theentityrecord component.- Specified by:
entityin interfaceRenderSource.Entity- Returns:
- the value of the
entityrecord component
-