BlockBuilderPillarRotatable

Link to blockbuilderpillarrotatable

통나무처럼 회전할 수 있는 블록을 만들 수 있는 특수 블록 제작기입니다.

즉 이 제작기는 위와 아래에 하나의 텍스처를 사용하고 옆면에는 하나의 텍스처를 사용하는 블록을 만들 수 있습니다. 보통 이런 블록의 면을 지칭할 때는 이름에 _endsides가 따라붙습니다. 대부분의 경우와 마찬가지로, 기본적으로 샘플 이미지가 생성되어 제공됩니다.

This class was added by a mod with mod-id contenttweaker. So you need to have this mod installed if you want to use this feature.

Importing the class

Link to importing-the-class

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.

ZenScript
Copy
mods.contenttweaker.block.pillar.BlockBuilderPillarRotatable

Implemented Interfaces

Link to implemented-interfaces

BlockBuilderPillarRotatable은 아래와 같은 인터페이스를 구현합니다. That means any method available to them can also be used on this class.

CoT에게 이 제작기가 빌드해야 하는 모든 블록을 실제로 빌드하도록 지시합니다.

ZenScript
Copy
new BlockBuilder().withType<BlockBuilderPillarRotatable>().build(resourceLocation as String);
new BlockBuilder().withType<BlockBuilderPillarRotatable>().build("my_awesome_block");
ParameterTypeDescription
Parameter
resourceLocation
Type
String
Description
해당 블록의 리소스 경로

끝 면(위/아래)에서 써야 하는 텍스처의 경로를 재정의합니다. 해당 텍스처의 네임스페이스가 CoT의 네임스페이스나 이를 지원하는 애드온에 있는 경우 기본적으로 이미지가 생성됩니다.

Returns: This builder, used for method chaining

Return type: mods.contenttweaker.block.pillar.BlockBuilderPillarRotatable

ZenScript
Copy
new BlockBuilder().withType<BlockBuilderPillarRotatable>().withEndTexture(endTexture as crafttweaker.api.util.MCResourceLocation);
new BlockBuilder().withType<BlockBuilderPillarRotatable>().withEndTexture(<resource:contenttweaker:my_awesome_pillar_end>);
ParameterTypeDescription
Parameter
endTexture
Type
MCResourceLocation
Description
끝 면에 쓰일 텍스처

끝 면(위/아래)에서 써야 하는 텍스처의 경로를 재정의합니다. 해당 텍스처의 네임스페이스가 CoT의 네임스페이스나 이를 지원하는 애드온에 있는 경우 기본적으로 이미지가 생성됩니다. 블록의 이름을 입력으로 받아 끝 면 텍스처를 반환하는 함수를 씁니다.

Returns: This builder, used for method chaining

Return type: mods.contenttweaker.block.pillar.BlockBuilderPillarRotatable

ZenScript
Copy
new BlockBuilder().withType<BlockBuilderPillarRotatable>().withEndTexture(endTexture as function.Function<crafttweaker.api.util.MCResourceLocation, crafttweaker.api.util.MCResourceLocation>);
new BlockBuilder().withType<BlockBuilderPillarRotatable>().withEndTexture((blockName as MCResourceLocation) => new MCResourceLocation(blockName.namespace, blockName.path + "_end"));
ParameterTypeDescription
Parameter
endTexture
Type
function.Function<MCResourceLocation, MCResourceLocation>
Description
사용할 함수

측면(위/아래 제외 모든 면)에서 써야 하는 텍스처의 경로를 재정의합니다. 해당 텍스처의 네임스페이스가 CoT의 네임스페이스나 이를 지원하는 애드온에 있는 경우 기본적으로 이미지가 생성됩니다.

Returns: This builder, used for method chaining

Return type: mods.contenttweaker.block.pillar.BlockBuilderPillarRotatable

ZenScript
Copy
new BlockBuilder().withType<BlockBuilderPillarRotatable>().withSideTexture(sidesTexture as crafttweaker.api.util.MCResourceLocation);
new BlockBuilder().withType<BlockBuilderPillarRotatable>().withSideTexture(<resource:contenttweaker:my_awesome_pillar_side>);
ParameterTypeDescription
Parameter
sidesTexture
Type
MCResourceLocation
Description
측면에 쓰일 텍스처

측면(위/아래 제외 모든 면)에서 써야 하는 텍스처의 경로를 재정의합니다. 해당 텍스처의 네임스페이스가 CoT의 네임스페이스나 이를 지원하는 애드온에 있는 경우 기본적으로 이미지가 생성됩니다. 블록의 이름을 입력으로 받아 끝 면 텍스처를 반환하는 함수를 씁니다.

Returns: This builder, used for method chaining

Return type: mods.contenttweaker.block.pillar.BlockBuilderPillarRotatable

ZenScript
Copy
new BlockBuilder().withType<BlockBuilderPillarRotatable>().withSideTexture(sidesTexture as function.Function<crafttweaker.api.util.MCResourceLocation, crafttweaker.api.util.MCResourceLocation>);
new BlockBuilder().withType<BlockBuilderPillarRotatable>().withSideTexture((blockName as MCResourceLocation) => new MCResourceLocation(blockName.namespace, blockName.path + "_sides"));
ParameterTypeDescription
Parameter
sidesTexture
Type
function.Function<MCResourceLocation, MCResourceLocation>
Description
사용할 함수