FluidBuilder
Link to fluidbuilder
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 at the very top of the file.
ZenScript Copyimport mods.contenttweaker.fluid.FluidBuilder;
Implemented Interfaces
Link to implemented-interfaces
FluidBuilder implements the following interfaces. That means all methods defined in these interfaces are also available in FluidBuilder
Constructors
Link to constructors
Creates a new FluidBuilder with default colorized textures
ZenScript Copynew FluidBuilder(isMolten as boolean, color as int) as FluidBuilder
new FluidBuilder(true, 0xff66ccff);
Parameter | Type | Description |
---|---|---|
Parameter isMolten | Type boolean | Description if the fluid is molten |
Parameter color | Type int | Description the color of the fluid, ARGB |
Creates a new FluidBuilder with two textures
ZenScript Copynew FluidBuilder(isMolten as boolean, color as int, stillTexture as MCResourceLocation, flowTexture as MCResourceLocation) as FluidBuilder
new FluidBuilder(true, 0xff66ccff, <resource:contenttweaker:fluid/liquid>, <resource:contenttweaker:fluid/liquid_flowing>);
Parameter | Type | Description |
---|---|---|
Parameter isMolten | Type boolean | Description if the fluid is molten |
Parameter color | Type int | Description the bucket fluid color, ARGB |
Parameter stillTexture | Type MCResourceLocation | Description the texture resource location of still fluid block |
Parameter flowTexture | Type MCResourceLocation | Description the texture resource location of flowing fluid block |
Methods
Link to methods
Name: build
Instructs CoT to actually build whatever this builder is supposed to be building.
Return Type: void
ZenScript Copy// FluidBuilder.build(resourceLocation as string) as void
myFluidBuilder.build("my_awesome_block");
Parameter | Type | Description |
---|---|---|
Parameter resourceLocation | Type string | Description The resource path to give this block |
Name: density
How fast you can walk in the fluid?
default value is 1000
Return Type: FluidBuilder
ZenScript Copy// FluidBuilder.density(density as int) as FluidBuilder
myFluidBuilder.density(1400);
Parameter | Type | Description |
---|---|---|
Parameter density | Type int | Description No Description Provided |
Name: gaseous
Is the fluid gaseous (flows upwards instead of downwards)?
Return Type: FluidBuilder
ZenScript Copy// FluidBuilder.gaseous() as FluidBuilder
myFluidBuilder.gaseous();
Name: luminosity
The light-level emitted by the fluid
default value is 0
Return Type: FluidBuilder
ZenScript Copy// FluidBuilder.luminosity(luminosity as int) as FluidBuilder
myFluidBuilder.luminosity(15);
Parameter | Type | Description |
---|---|---|
Parameter luminosity | Type int | Description No Description Provided |
Name: temperature
The Fluid's temperature
default value is 300
Return Type: FluidBuilder
ZenScript Copy// FluidBuilder.temperature(temperature as int) as FluidBuilder
myFluidBuilder.temperature(500);
Parameter | Type | Description |
---|---|---|
Parameter temperature | Type int | Description No Description Provided |
Name: viscosity
How quickly the fluid spreads
default value is 1000
Return Type: FluidBuilder
ZenScript Copy// FluidBuilder.viscosity(viscosity as int) as FluidBuilder
myFluidBuilder.viscosity(800);
Parameter | Type | Description |
---|---|---|
Parameter viscosity | Type int | Description No Description Provided |