ICapabilityProvider

Link to icapabilityprovider

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
Copy
import crafttweaker.api.capability.ICapabilityProvider;

Name: getCapability

Gets the capability.

Returns: The found capability or null.
Return Type: @org.openzen.zencode.java.ZenCodeType.Nullable T

ZenScript
Copy
ICapabilityProvider.getCapability<T : Object>(cap as Capability<T>) as @org.openzen.zencode.java.ZenCodeType.Nullable T
ParametroTipoDescrizione
Parametro
cap
Tipo
Capability<T>
Descrizione
The capability to get.
Parametro
T
Tipo
Object
Descrizione
The type of the capability to get.

Name: getCapability

Gets the capability for the given side.

Returns: The found capability or null.
Return Type: @org.openzen.zencode.java.ZenCodeType.Nullable T

ZenScript
Copy
ICapabilityProvider.getCapability<T : Object>(cap as Capability<T>, side as Direction?) as @org.openzen.zencode.java.ZenCodeType.Nullable T
ParametroTipoDescrizione
Parametro
cap
Tipo
Capability<T>
Descrizione
The capability to get.
Parametro
side
Tipo
Direction?
Descrizione
The side to get the capability from, can be null.
Parametro
T
Tipo
Object
Descrizione
The type of the capability to get.