Schnittstelle IPlayerActor

Alle bekannten Implementierungsklassen:
PlayerActor

public interface IPlayerActor
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    Attaches an Actor to the LocalPlayer instance.
    Attaches an Actor to the LocalPlayer instance.
    void
    Detach an Actor from the LocalPlayer and hand off control back to the user.
    @Nullable IActor
    Get the IActor instance for this LocalPlayer.
  • Methodendetails

    • actor$attach

      IActor actor$attach()
      Attaches an Actor to the LocalPlayer instance. Uses ActorPriority.ACTOR
      Gibt zurück:
      The IActor instance for this LocalPlayer
    • actor$attach

      IActor actor$attach(ActorPriority priority)
      Attaches an Actor to the LocalPlayer instance.
      Parameter:
      priority - The ActorPriority for this Actor. See ActorPriority for more info.
      Gibt zurück:
      The IActor instance for this LocalPlayer
    • actor$detach

      void actor$detach()
      Detach an Actor from the LocalPlayer and hand off control back to the user. Does nothing of no actor is attached.
    • actor$getActor

      @Nullable @Nullable IActor actor$getActor()
      Get the IActor instance for this LocalPlayer. May be null if no Actor is attached.
      Gibt zurück:
      The IActor instance or null