Skip to content
Anon10W1z edited this page Dec 20, 2014 · 7 revisions

Fluids Properties:

READ THIS FIRST

  • {name} - The name of the fluid

  • {textureName} - The texture name of the fluid. Still Liquid path:resourcepack/customItems/textures/blocks/textureName.png

Flowing Liquid path:resourcepack/customItems/blocks/textureName_flowing.png

  • [creativeTab] = "Custom Items" - The tab label from the tab that the liquid will show.

  • [luminosity] = 0 - The light level from the fluid block

  • [density] = 1000 - Defines what liquids replace eachother when they meet. (like water and oil)

  • [temperature] = 300 - At moment this field makes nothing at all.

  • [viscosity] = 1000 - How far/fast a liquid flows

  • [isGas] = false - Define if the fluid is gas or liquid

Format Example

{
	"fluids":
	[
		{
			"name":"Fluid 1",
			"textureName":"fluid1",
			"luminosity": 0,
			"density": 1,
			"temperature": 1,
			"viscosity": 1,
			"isGas": false
		},
		{
			"name":"Fluid 2",
			"textureName":"fluid2",
			"luminosity": 0,
			"density": 1,
			"temperature": 1,
			"viscosity": 1,
			"isGas": false
		},
		...
		{
			"name":"Fluid X",
			"textureName":"fluidX",
			"luminosity": 0,
			"density": 1,
			"temperature": 1,
			"viscosity": 1,
			"isGas": false
		}
		
	]
}

Clone this wiki locally