From 1e9218ac7b74d7b0461ea66e9a376e3056ea7281 Mon Sep 17 00:00:00 2001 From: LaG1924 Date: Sat, 9 Jul 2022 06:51:25 +0500 Subject: Added smooth liquid transitions --- src/AssetManager.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/AssetManager.hpp') diff --git a/src/AssetManager.hpp b/src/AssetManager.hpp index cad7eaf..250524e 100644 --- a/src/AssetManager.hpp +++ b/src/AssetManager.hpp @@ -22,6 +22,10 @@ enum FaceDirection { south, west, east, + northWest, + northEast, + southWest, + southEast, none, }; @@ -32,6 +36,10 @@ static const Vector FaceDirectionVector[] = { Vector(0,0,1), Vector(-1,0,0), Vector(1,0,0), + Vector(-1,0,-1), + Vector(1,0,-1), + Vector(-1,0,1), + Vector(1,0,1), Vector(0,0,0) }; -- cgit v1.2.3