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. |