MCPcopy Create free account
hub / github.com/DFHack/dfhack / isTransientMaterial

Function isTransientMaterial

plugins/3dveins.cpp:666–683  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

664}
665
666static bool isTransientMaterial(df::tiletype tile)
667{
668 using namespace df::enums::tiletype_material;
669
670 switch (tileMaterial(tile))
671 {
672 case AIR:
673 case LAVA_STONE:
674 case PLANT:
675 case ROOT:
676 case TREE:
677 case MUSHROOM:
678 return true;
679
680 default:
681 return false;
682 }
683}
684
685static bool isSkyBlock(Block *b)
686{

Callers 2

isSkyBlockFunction · 0.85
scan_layer_depthMethod · 0.85

Calls 1

tileMaterialFunction · 0.85

Tested by

no test coverage detected