Package net.minecraft.src

Examples of net.minecraft.src.Block.shouldSideBeRendered()


        return false;
      } else {
        if (face >= 0 && this.innerSeams) {
          int[] normal = NORMALS[face];

          if (!neighbor.shouldSideBeRendered(blockAccess, i + normal[0], j + normal[1], k + normal[2], face)) {
            return false;
          }
        }

        switch (this.connectType) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.