1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00

Biome API: Enable decorations placed on water

Add schematic decoration force placement flag
This commit is contained in:
paramat 2015-03-05 01:53:11 +00:00
parent b65c7ab4a4
commit c7454d4732
3 changed files with 18 additions and 9 deletions

View file

@ -35,10 +35,11 @@ enum DecorationType {
DECO_LSYSTEM
};
#define DECO_PLACE_CENTER_X 0x01
#define DECO_PLACE_CENTER_Y 0x02
#define DECO_PLACE_CENTER_Z 0x04
#define DECO_USE_NOISE 0x08
#define DECO_PLACE_CENTER_X 0x01
#define DECO_PLACE_CENTER_Y 0x02
#define DECO_PLACE_CENTER_Z 0x04
#define DECO_USE_NOISE 0x08
#define DECO_FORCE_PLACEMENT 0x10
extern FlagDesc flagdesc_deco[];