MCCommandContext
导入相关包
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.
import crafttweaker.api.commands.custom.MCCommandContext;
Casters
方法
copyFor
Return Type: MCCommandContext
MCCommandContext.copyFor(source as MCCommandSource) as MCCommandContext
参数 | 类型 | 描述 |
---|
来源 | MC命令源 | No Description Provided |
equals #等于
Return Type: boolean
MCCommandContext.equals(o as Object) as boolean
参数 | 类型 | 描述 |
---|
o | Object | No Description Provided |
获取参数
Return Type: string
MCCommandContext.getArgument(name as string) as string
参数 | 类型 | 描述 |
---|
name | string | No Description Provided |
getChild
Return Type: MCCommandContext
MCCommandContext.getChild() as MCCommandContext
myMCCommandContext.getChild();
getCommand
Return Type: MCCommand
MCCommandContext.getCommand() as MCCommand
myMCCommandContext.getCommand();
Return Type: string
MCCommandContext.getInput() as string
myMCCommandContext.getInput();
getLastChild
Return Type: MCCommandContext
MCCommandContext.getLastChild() as MCCommandContext
myMCCommandContext.getLastChild();
getNodes
Return Type: stdlib.List<MCParsedCommandNode>
MCCommandContext.getNodes() as stdlib.List<MCParsedCommandNode>
myMCCommandContext.getNodes();
getRange
Return Type: MCStringRange
MCCommandContext.getRange() as MCStringRange
myMCCommandContext.getRange();
获取重定向修改器
Return Type: MCRedirectModifier
MCCommandContext.getRedirectModifier() as MCRedirectModifier
myMCCommandContext.getRedirectModifier();
getRootNode
Return Type: MCCommandNode
MCCommandContext.getRootNode() as MCCommandNode
myMCCommandContext.getRootNode();
getSource
Return Type: MCCommandSource
MCCommandContext.getSource() as MCCommandSource
myMCCommandContext.getSource();
hasNodes
Return Type: boolean
MCCommandContext.hasNodes() as boolean
myMCCommandContext.hasNodes();
hashCode
Return Type: int
MCCommandContext.hashCode() as int
myMCCommandContext.hashCode();
isForked
Return Type: boolean
MCCommandContext.isForked() as boolean
myMCCommandContext.isForked();
toString
Return Type: string
MCCommandContext.toString() as string
myMCCommandContext.toString();
运算符
EQUALS
myMCCommandContext == o 为对象