Uses of Interface
net.minecraftforge.common.model.animation.IClip
-
Packages that use IClip Package Description net.minecraftforge.client.extensions net.minecraftforge.client.model.animation net.minecraftforge.client.model.b3d net.minecraftforge.common.model.animation -
-
Uses of IClip in net.minecraftforge.client.extensions
Methods in net.minecraftforge.client.extensions that return types with arguments of type IClip Modifier and Type Method Description default java.util.Optional<? extends IClip>IForgeUnbakedModel. getClip(java.lang.String name)Retrieves information about an animation clip in the model. -
Uses of IClip in net.minecraftforge.client.model.animation
Classes in net.minecraftforge.client.model.animation that implement IClip Modifier and Type Class Description protected static classModelBlockAnimation.MBClipMethods in net.minecraftforge.client.model.animation that return types with arguments of type IClip Modifier and Type Method Description com.google.common.collect.ImmutableMap<java.lang.String,? extends IClip>ModelBlockAnimation. getClips() -
Uses of IClip in net.minecraftforge.client.model.b3d
Classes in net.minecraftforge.client.model.b3d that implement IClip Modifier and Type Class Description classB3DClipMethods in net.minecraftforge.client.model.b3d that return types with arguments of type IClip Modifier and Type Method Description java.util.Optional<IClip>B3DLoader.ModelWrapper. getClip(java.lang.String name) -
Uses of IClip in net.minecraftforge.common.model.animation
Classes in net.minecraftforge.common.model.animation that implement IClip Modifier and Type Class Description static classClips.ClipReferenceReference to another clip.static classClips.IdentityClipClip that does nothing.static classClips.ModelClipWrapper for model clips; useful for debugging and serialization;static classClips.SlerpClipSpherical linear blend between 2 clips.static classClips.TimeClipClip with custom parameterization of the time.static classClips.TriggerClipClip + Event, triggers when parameter becomes non-negative.Fields in net.minecraftforge.common.model.animation declared as IClip Modifier and Type Field Description private IClipClips.ModelClip. childClipprivate IClipClips.TimeClip. childClipprivate IClipClips.ClipReference. clipprivate IClipClips.TriggerClip. clipprivate IClipJointClips.NodeJointClip. clipprivate IClipAnimationStateMachine. currentStateprivate IClipClips.SlerpClip. fromprivate IClipClips.SlerpClip. toFields in net.minecraftforge.common.model.animation with type parameters of type IClip Modifier and Type Field Description private static com.google.common.cache.LoadingCache<org.apache.commons.lang3.tuple.Triple<? extends IClip,java.lang.Float,java.lang.Float>,org.apache.commons.lang3.tuple.Pair<IModelTransform,java.lang.Iterable<Event>>>AnimationStateMachine. clipCacheprivate java.util.function.Function<java.lang.String,IClip>Clips.ClipReference. clipResolverprivate java.lang.ThreadLocal<java.util.function.Function<java.lang.String,IClip>>Clips.CommonClipTypeAdapterFactory. clipResolverprivate com.google.common.collect.ImmutableMap<java.lang.String,IClip>AnimationStateMachine. clipsMethods in net.minecraftforge.common.model.animation that return IClip Modifier and Type Method Description IClipAnimationStateMachine.ClipResolver. apply(java.lang.String name)static IClipClips. getModelClipNode(ResourceLocation modelLocation, java.lang.String clipName)Retrieves the clip from the model.Methods in net.minecraftforge.common.model.animation with parameters of type IClip Modifier and Type Method Description static org.apache.commons.lang3.tuple.Pair<IModelTransform,java.lang.Iterable<Event>>Clips. apply(IClip clip, float lastPollTime, float time)IModelState wrapper for a Clip, sampled at specified time.Method parameters in net.minecraftforge.common.model.animation with type arguments of type IClip Modifier and Type Method Description voidClips.CommonClipTypeAdapterFactory. setClipResolver(java.util.function.Function<java.lang.String,IClip> clipResolver)Constructors in net.minecraftforge.common.model.animation with parameters of type IClip Constructor Description ModelClip(IClip childClip, ResourceLocation modelLocation, java.lang.String clipName)NodeJointClip(IJoint joint, IClip clip)SlerpClip(IClip from, IClip to, ITimeValue input, ITimeValue progress)TimeClip(IClip childClip, ITimeValue time)TriggerClip(IClip clip, ITimeValue parameter, java.lang.String event)Constructor parameters in net.minecraftforge.common.model.animation with type arguments of type IClip Constructor Description ClipReference(java.lang.String clipName, java.util.function.Function<java.lang.String,IClip> clipResolver)
-