TagManagerEntityType

Link to tagmanagerentitytype

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.tag.TagManagerEntityType;

已实现的接口

Link to 已实现的接口

TagManagerEntityType implements the following interfaces. That means all methods defined in these interfaces are also available in TagManagerEntityType

Name: exists

Checks if a tag already exists. Does the same as calling .exists on a tag directly

Returns: Whether or not this tag already exists
Return Type: boolean

ZenScript
Copy
TagManagerEntityType.exists(location as MCResourceLocation) as boolean
参数类型描述
参数
位置
类型
MCResourceLocation
描述
The resource location to check for

Name: exists

Checks if a tag already exists. Does the same as calling .exists on a tag directly

Returns: Whether or not this tag already exists
Return Type: boolean

ZenScript
Copy
TagManagerEntityType.exists(name as string) as boolean
参数类型描述
参数
name(名称)
类型
string
描述
The resource location to check for

Name: getAllTags

Retrieves a list of all tags currently registered.

Return Type: stdlib.List<MCTag<T>>

ZenScript
Copy
// TagManagerEntityType.getAllTags() as stdlib.List<MCTag<T>>

myTagManagerEntityType.getAllTags();

Name: getTag

Retrieves a tag by its name. Will also be called by the BEP.

Note that this method does not yet create the tag if it does not exist. Adding something to the object created by this tag will create it for the game.

Returns: A Tag object.
Return Type: MCTag<T>

ZenScript
Copy
TagManagerEntityType.getTag(location as MCResourceLocation) as MCTag<T>
参数类型描述
参数
位置
类型
MCResourceLocation
描述
The Resource location of the tag

Name: getTag

Retrieves a tag by its name. Will also be called by the BEP.

Note that this method does not yet create the tag if it does not exist. Adding something to the object created by this tag will create it for the game.

Returns: A Tag object.
Return Type: MCTag<T>

ZenScript
Copy
TagManagerEntityType.getTag(name as string) as MCTag<T>
参数类型描述
参数
name(名称)
类型
string
描述
The Resource location of the tag

Name: CONTAINS

Checks if a tag already exists. Does the same as calling .exists on a tag directly

ZenScript
Copy
name as string in myTagManagerEntityType
名称类型可获得可设置描述
名称
all
类型
stdlib.List<MCTag<T>>
可获得
true
可设置
false
描述
Retrieves a list of all tags currently registered.