Class FabricDimensions

java.lang.Object
net.fabricmc.fabric.api.dimension.v1.FabricDimensions

@Deprecated
public final class FabricDimensions
extends Object
Deprecated.
Experimental feature, may be removed or changed without further notice due to potential changes to Dimensions in subsequent versions.
This class consists exclusively of static methods that operate on world dimensions.
  • Method Summary

    Modifier and Type Method Description
    static <E extends net.minecraft.entity.Entity>
    E
    teleport​(E teleported, net.minecraft.server.world.ServerWorld destination, net.minecraft.world.TeleportTarget target)
    Deprecated.
    Teleports an entity to a different dimension, placing it at the specified destination.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • teleport

      @Nullable public static <E extends net.minecraft.entity.Entity> E teleport​(E teleported, net.minecraft.server.world.ServerWorld destination, net.minecraft.world.TeleportTarget target)
      Deprecated.
      Teleports an entity to a different dimension, placing it at the specified destination.

      Using this method will circumvent Vanilla's portal placement code.

      When teleporting to another dimension, the entity may be replaced with a new entity in the target dimension. This is not the case for players, but needs to be accounted for by the caller.

      Type Parameters:
      E - the type of the teleported entity
      Parameters:
      teleported - the entity to teleport
      destination - the dimension the entity will be teleported to
      target - where the entity will be placed in the target world. As in Vanilla, the target's velocity is not applied to players. If target is null, the entity will not be teleported.
      Returns:
      Returns the teleported entity in the target dimension, which may be a new entity or teleported, depending on the entity type.
      Throws:
      IllegalStateException - if this method is called on a client entity