Builder to create a 'Not' condition.
The sub-condition added to a 'Not' condition will be passed through the equivalent of a NOT gate, effectively inverting the result of the query. This makes this loot condition effectively a clone of Inverted at the moment. This ensures a more coherent experience in case vanilla's behavior changes in the future, while also allowing the user to specify the logic gate directly.
A 'Not' condition requires a sub-condition to be built.
导入类
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.loot.conditions.crafttweaker.Not;
已实现的接口
Link to 已实现的接口
Not implements the following interfaces. That means all methods defined in these interfaces are also available in Not
使用方式
Link to 使用方式
Name: withCondition
Sets the negated condition to the one created with the given LootConditionBuilder.
The builder must host a single loot condition. Builders with a different amount of conditions are not allowed. The builder will be used to generate a loot condition that will then be used as sub-condition.
This parameter is required.
Returns: This builder for chaining.
Return Type: Not
ZenScript CopyNot.withCondition(builder as LootConditionBuilder) as Not
参数 | 类型 | 描述 |
---|---|---|
参数 生成器 | 类型 LootConditionBuilder | 描述 The builder to create a single ILootCondition. |
Name: withCondition
Sets the loot condition to negate.
This parameter is required.
Returns: This builder for chaining.
Return Type: Not
ZenScript CopyNot.withCondition(condition as ILootCondition) as Not
参数 | 类型 | 描述 |
---|---|---|
参数 condition | 类型 ILootCondition | 描述 The condition to negate. |
Name: withCondition
Creates and builds the sub-condition that will then be negated.
Returns: This builder for chaining.
Return Type: Not
ZenScript CopyNot.withCondition<T : ILootConditionTypeBuilder>(lender as Consumer<T>) as Not
参数 | 类型 | 描述 |
---|---|---|
参数 lender | 类型 Consumer<T> | 描述 A consumer that allows configuration of the created condition. |
参数 T | 类型 ILootConditionTypeBuilder | 描述 The known type of the condition itself. |