PlayManager
Link to playmanager
This class was added by a mod with mod-id cinematic_transitions
. Perciò, è necessario avere questa mod installata per poter utilizzare questa funzione.
Importare la Classe
Link to importare-la-classe
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport mods.cinematic_transitions.PlayManager;
Static Methods
Link to static-methods
Name: playPopUp
Return Type: void
ZenScript CopyPlayManager.playPopUp(registryName as string) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro registryName | Tipo string | Descrizione take the registry name of a PopUp registered using Json, plays the popup provided. |
Name: playTransition
Plays transition (black bars on the top and bottom of screen) with no children (popups)
Return Type: void
ZenScript Copy// PlayManager.playTransition() as void
PlayManager.playTransition();
Name: playTransition
Return Type: void
ZenScript CopyPlayManager.playTransition(childName as string) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro childName | Tipo string | Descrizione Plays transition with child. Syncs up the child wait duration and transition length to parent's |
Name: registerBiomePopUpListener
Registers a listener that triggers given popup when player enters given biome
Return Type: void
ZenScript CopyPlayManager.registerBiomePopUpListener(biomeName as string, popUp as string, hasTransition as boolean) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro biomeName | Tipo string | Descrizione registry name of biome |
Parametro popUp | Tipo string | Descrizione registry name of popup |
Parametro hasTransition | Tipo boolean | Descrizione whether if transition should be played |
Name: registerDimensionPopUpListener
Registers a listener that triggers given popup when player enters given dimension
Return Type: void
ZenScript CopyPlayManager.registerDimensionPopUpListener(dimensionName as string, popUp as string, hasTransition as boolean) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro dimensionName | Tipo string | Descrizione registry name of dimension |
Parametro popUp | Tipo string | Descrizione registry name of popup |
Parametro hasTransition | Tipo boolean | Descrizione whether if transition should be played |
Name: registerEntityPopUpListener
Registers a listener that triggers given popup when given entity spawns
Return Type: void
ZenScript CopyPlayManager.registerEntityPopUpListener(entityName as string, popUp as string, hasTransition as boolean) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro entityName | Tipo string | Descrizione entity type |
Parametro popUp | Tipo string | Descrizione registry name of popup |
Parametro hasTransition | Tipo boolean | Descrizione whether if transition should be played |
Name: registerStructurePopUpListener
Registers a listener that triggers given popup when player enters given structure
Return Type: void
ZenScript CopyPlayManager.registerStructurePopUpListener(structureName as string, popUp as string, hasTransition as boolean) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro structureName | Tipo string | Descrizione registry name of structure |
Parametro popUp | Tipo string | Descrizione registry name of popup |
Parametro hasTransition | Tipo boolean | Descrizione whether if transition should be played |
Name: setHideInventory
Return Type: void
ZenScript CopyPlayManager.setHideInventory(hideInventory as boolean) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro hideInventory | Tipo boolean | Descrizione whether if the hotbar, health, etc should be hidden during popup/transition |