mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 04:05:50 -07:00
21 lines
330 B
Java
21 lines
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;
|
|
}
|