public class CollisionType
extends java.lang.Object
CollisionType.TERRAIN |
CollisionType.CONSTRUCTIONS | CollisionType.OBJECTS
"Modifier and Type | Field and Description |
---|---|
static int |
APIELEMENTS
API elements (custom objects created via API, e.g.
|
static int |
BITMASK_BUILDING
Default building collision bitmask (for example used when the player wants to place an object).
|
static int |
BITMASK_DEFAULT
Default player picking collision bitmask.
|
static int |
CHOPPEDTREES
Chopped trees
|
static int |
CONSTRUCTIONS
Construction elements (blocks, planks, beams etc)
|
static int |
CONSTRUCTIONSBOUND
Construction elements (blocks, planks, beams etc)
|
static int |
CORPSES
Corpses (player corpses, NPC corpses etc)
|
static int |
GRASS
Grass blades
|
static int |
ITEMS
Items (world items)
|
static int |
LOCALPLAYER
Local player (i.e. the client the raycast is performed on)
|
static int |
NPCS
NPCs (animals, monsters etc), actual NPC mesh
|
static int |
NPCSBOUND
Bounding volume of NPCs (i.e. rough area around NPCs).
|
static int |
NULL
No collision
|
static int |
OBJECTS
Objects (furniture, doors, torches etc), actual object mesh
|
static int |
OBJECTSBOUND
Bounding volume of objects (i.e. rough area around objects like furniture).
|
static int |
PLAYERS
Players (does not include the client the raycast is performed on)
|
static int |
TERRAIN
Terrain
|
static int |
TREES
Trees (does not include small plants, crops etc).
|
static int |
VEGETATIONS
All types of vegetation (trees, plants, flowers, crops etc)
|
static int |
VEHICLES
Vehicles
|
static int |
WATER
Water surfaces (ponds, lakes, oceans etc)
|
Constructor and Description |
---|
CollisionType() |
Modifier and Type | Method and Description |
---|---|
static boolean |
checkCollisionBitmask(int type,
int bitmask)
Checks if the provided bitmask "contains" the specified collision type.
|
static int |
getBitmask(int... collisionTypes)
Gets a bitmask of the provided collision types.
|
public static final int NULL
public static final int TERRAIN
public static final int WATER
public static final int GRASS
public static final int CONSTRUCTIONS
public static final int CONSTRUCTIONSBOUND
public static final int OBJECTS
public static final int OBJECTSBOUND
OBJECTS
public static final int VEGETATIONS
public static final int TREES
VEGETATIONS
public static final int CHOPPEDTREES
public static final int PLAYERS
public static final int LOCALPLAYER
public static final int NPCS
public static final int NPCSBOUND
NPCS
public static final int CORPSES
public static final int ITEMS
public static final int VEHICLES
public static final int APIELEMENTS
World3DModel
)public static final int BITMASK_DEFAULT
public static final int BITMASK_BUILDING
public static int getBitmask(int... collisionTypes)
getBitmask(CollisionType.TERRAIN, CollisionType.BLOCKS);
int bitmask = CollisionType.TERRAIN | CollisionType.BLOCKS;
)collisionTypes
- the collision types you want to "combine"public static boolean checkCollisionBitmask(int type, int bitmask)
checkCollisionBitmask(CollisionType.CONSTRUCTIONS, bitmask);
type
- the collision type (e.g. "TERRAIN", "BLOCKS", "OBJECTS" etc.)bitmask
- the collision type bitmask