Package net.anzix.fsz.voxelworld.features.components

Examples of net.anzix.fsz.voxelworld.features.components.Floor


    public boolean affectBlock(final VoxelBlockPosition p, final LayerBlock layerBlock, final DetailLevel level) {
        return true; //p.y == 0 || p.y == 1;; //csak 0-32 height esetén jó!!!
    }

    public PlainField() {
        sandFloor = new Floor(41,5);
    }
View Full Code Here


    }

    public RockyMountain() {
        rockNoise = new Noise(3, 0.01, 1);
        rockNoise2 = new Noise(3, 0.1, .5);
        rockFloor = new Floor(0,132);
        sandFloor = new Floor(-5,5);


        //testObject2 = new Sphere(new Vector3(120,30,120),30);
    }
View Full Code Here

TOP

Related Classes of net.anzix.fsz.voxelworld.features.components.Floor

Copyright © 2018 www.massapicom. 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.