BlockBuilderSlab
Link to blockbuilderslab
A special builder that allows you to create slabs.
By default, this has 3 textures, one for the top, bottom and the sides. Come la maggior parte delle cose qui, le immagini di esempio sono generate per voi però per impostazione predefinita.
This class was added by a mod with mod-id contenttweaker
. Perciò, è necessario avere questa mod installata per poter utilizzare questa funzione.
Importare la Classe
Link to importare-la-classe
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 mods.contenttweaker.block.slab.BlockBuilderSlab;
Extending BlockTypeBuilder
Link to extending-blocktypebuilder
BlockBuilderSlab extends BlockTypeBuilder. That means all methods available in BlockTypeBuilder are also available in BlockBuilderSlab
Metodi
Link to metodi
Name: build
Istruisce CoT per costruire realmente qualsiasi cosa il costruttore dovrebbe star costruendo.
Return Type: void
ZenScript Copy// BlockBuilderSlab.build(resourceLocation as string) as void
new BlockBuilder().withType<BlockBuilderSlab>().build("my_awesome_block");
Parametro | Tipo | Descrizione |
---|---|---|
Parametro resourceLocation | Tipo string | Descrizione Il percorso della risorsa per dare questo blocco |
Name: withBottomTexture
Allows you to override the path of the texture that the bottom should use. Se lo spazio dei nomi di quella texture sono nello spazio dei nomi di CoT o ognuno dei suoi addon (che lo supportano) allora l'immagine sarà creata per impostazione predefinita. Uses a function that takes the block's name as input and returns the bottom texture for it.
Returns: This builder, used for method chaining
Return Type: BlockBuilderSlab
ZenScript Copy// BlockBuilderSlab.withBottomTexture(bottomTexture as Function<MCResourceLocation,MCResourceLocation>) as BlockBuilderSlab
new BlockBuilder().withType<BlockBuilderSlab>().withBottomTexture((blockName as ResourceLocation) => new ResourceLocation(blockName.namespace, blockName.path + "_top"));
Parametro | Tipo | Descrizione |
---|---|---|
Parametro bottomTexture | Tipo Function<MCResourceLocation,MCResourceLocation> | Descrizione La funzione da usare |
Name: withBottomTexture
Allows you to override the path of the texture that the bottom should use. Se lo spazio dei nomi di quella texture sono nello spazio dei nomi di CoT o ognuno dei suoi addon (che lo supportano) allora l'immagine sarà creata per impostazione predefinita.
Returns: This builder, used for method chaining
Return Type: BlockBuilderSlab
ZenScript Copy// BlockBuilderSlab.withBottomTexture(bottomTexture as MCResourceLocation) as BlockBuilderSlab
new BlockBuilder().withType<BlockBuilderSlab>().withBottomTexture(<resource:contenttweaker:my_awesome_slab_bottom>);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro bottomTexture | Tipo MCResourceLocation | Descrizione La texture da usare per i lati. |
Name: withSideTexture
Ti consente di sovrascrivere il percorso della texture che i lati (tutto tranne sopra/sotto) dovrebbero usare. Se lo spazio dei nomi di quella texture sono nello spazio dei nomi di CoT o ognuno dei suoi addon (che lo supportano) allora l'immagine sarà creata per impostazione predefinita. Uses a function that takes the block's name as input and returns the sides texture for it.
Returns: This builder, used for method chaining
Return Type: BlockBuilderSlab
ZenScript Copy// BlockBuilderSlab.withSideTexture(sidesTexture as Function<MCResourceLocation,MCResourceLocation>) as BlockBuilderSlab
new BlockBuilder().withType<BlockBuilderSlab>().withSideTexture((blockName as ResourceLocation) => new ResourceLocation(blockName.namespace, blockName.path + "_sides"));
Parametro | Tipo | Descrizione |
---|---|---|
Parametro sidesTexture | Tipo Function<MCResourceLocation,MCResourceLocation> | Descrizione La funzione da usare |
Name: withSideTexture
Ti consente di sovrascrivere il percorso della texture che i lati (tutto tranne sopra/sotto) dovrebbero usare. Se lo spazio dei nomi di quella texture sono nello spazio dei nomi di CoT o ognuno dei suoi addon (che lo supportano) allora l'immagine sarà creata per impostazione predefinita.
Returns: This builder, used for method chaining
Return Type: BlockBuilderSlab
ZenScript Copy// BlockBuilderSlab.withSideTexture(sidesTexture as MCResourceLocation) as BlockBuilderSlab
new BlockBuilder().withType<BlockBuilderSlab>().withSideTexture(<resource:contenttweaker:my_awesome_slab_side>);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro sidesTexture | Tipo MCResourceLocation | Descrizione La texture da usare per i lati. |
Name: withTopTexture
Allows you to override the path of the texture that the top should use. Se lo spazio dei nomi di quella texture sono nello spazio dei nomi di CoT o ognuno dei suoi addon (che lo supportano) allora l'immagine sarà creata per impostazione predefinita. Uses a function that takes the block's name as input and returns the top texture for it.
Returns: This builder, used for method chaining
Return Type: BlockBuilderSlab
ZenScript Copy// BlockBuilderSlab.withTopTexture(topTexture as Function<MCResourceLocation,MCResourceLocation>) as BlockBuilderSlab
new BlockBuilder().withType<BlockBuilderSlab>().withTopTexture((blockName as ResourceLocation) => new ResourceLocation(blockName.namespace, blockName.path + "_top"));
Parametro | Tipo | Descrizione |
---|---|---|
Parametro topTexture | Tipo Function<MCResourceLocation,MCResourceLocation> | Descrizione La funzione da usare |
Name: withTopTexture
Allows you to override the path of the texture that the top should use. Se lo spazio dei nomi di quella texture sono nello spazio dei nomi di CoT o ognuno dei suoi addon (che lo supportano) allora l'immagine sarà creata per impostazione predefinita.
Returns: This builder, used for method chaining
Return Type: BlockBuilderSlab
ZenScript Copy// BlockBuilderSlab.withTopTexture(topTexture as MCResourceLocation) as BlockBuilderSlab
new BlockBuilder().withType<BlockBuilderSlab>().withTopTexture(<resource:contenttweaker:my_awesome_slab_top>);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro topTexture | Tipo MCResourceLocation | Descrizione La texture da usare per i lati. |