Package codechicken.core.featurehack.mc

Examples of codechicken.core.featurehack.mc.TextureWaterFX


    {
        replaceWater = TweakTransformer.tweaks.getTag("replaceWaterFX").setComment("Set this to true to use the pre1.5 water textures").getBooleanValue(false);
        replaceLava = TweakTransformer.tweaks.getTag("replaceLavaFX").setComment("Set this to true to use the pre1.5 lava textures").getBooleanValue(false);
        if(replaceWater)
        {
            newTextures[0] = new TextureWaterFX().texture;
            newTextures[1] = new TextureWaterFlowFX().texture;
        }
        if(replaceLava)
        {
            newTextures[2] = new TextureLavaFX().texture;
View Full Code Here

TOP

Related Classes of codechicken.core.featurehack.mc.TextureWaterFX

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.