geforkt von Mirrors/Paper
55523cfcfc
By: blablubbabc <lukas@wirsindwir.de>
21 Zeilen
330 B
Java
21 Zeilen
330 B
Java
package org.bukkit;
|
|
|
|
/**
|
|
* Determines the collision behavior when fluids get hit during ray tracing.
|
|
*/
|
|
public enum FluidCollisionMode {
|
|
|
|
/**
|
|
* Ignore fluids.
|
|
*/
|
|
NEVER,
|
|
/**
|
|
* Only collide with source fluid blocks.
|
|
*/
|
|
SOURCE_ONLY,
|
|
/**
|
|
* Collide with all fluids.
|
|
*/
|
|
ALWAYS;
|
|
}
|