collision refactor

This commit is contained in:
maxwes08
2026-03-24 00:14:17 +01:00
parent 9ffda6f5af
commit 24ca4288af
4 changed files with 242 additions and 140 deletions

View File

@@ -8,7 +8,8 @@
OakPlanks,
Grass,
Bedrock,
Sand
Sand,
TNT
}
public enum Orientation : byte
@@ -88,6 +89,17 @@
Voxel.Textures.GrassSide, // North
Voxel.Textures.GrassSide // South
)},
{ Voxel.Blocks.TNT, new BlockDefinition(
Voxel.Blocks.TNT,
Voxel.Textures.TntSide, // West
Voxel.Textures.TntSide, // East
Voxel.Textures.TntTop, // Top
Voxel.Textures.TntBottom, // Bottom
Voxel.Textures.TntSide, // North
Voxel.Textures.TntSide // South
)},
};
}
}