ICapabilityProvider
Link to icapabilityprovider
Импорт класса
Link to импорт-класса
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 crafttweaker.api.capability.ICapabilityProvider;
Методы
Link to методы
Name: getCapability
Gets the capability.
Returns: The found capability or null.
Return Type: @org.openzen.zencode.java.ZenCodeType.Nullable T
ZenScript CopyICapabilityProvider.getCapability<T : Object>(cap as Capability<T>) as @org.openzen.zencode.java.ZenCodeType.Nullable T
Параметр | Тип | Описание |
---|---|---|
Параметр cap | Тип Capability<T> | Описание The capability to get. |
Параметр T | Тип Object | Описание 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 CopyICapabilityProvider.getCapability<T : Object>(cap as Capability<T>, side as Direction?) as @org.openzen.zencode.java.ZenCodeType.Nullable T
Параметр | Тип | Описание |
---|---|---|
Параметр cap | Тип Capability<T> | Описание The capability to get. |
Параметр side | Тип Direction? | Описание The side to get the capability from, can be null. |
Параметр T | Тип Object | Описание The type of the capability to get. |