Package morph.common.ability

Examples of morph.common.ability.AbilitySwim


            {
                for(Ability ab: info.morphAbilities)
                {
                    if(ab.getType().equalsIgnoreCase("swim"))
                    {
                        AbilitySwim abilitySwim = (AbilitySwim)ab;
                        if(!abilitySwim.canSurviveOutOfWater)
                        {
                            if(player.isInWater())
                            {
                                float multi = 7.5F;
View Full Code Here


            {
                for(Ability ab: info.morphAbilities)
                {
                    if(ab.getType().equalsIgnoreCase("swim"))
                    {
                        AbilitySwim abilitySwim = (AbilitySwim)ab;
                        if(!abilitySwim.canSurviveOutOfWater)
                        {
                            GL11.glFogi(GL11.GL_FOG_MODE, GL11.GL_EXP);
                            if(player.isInWater())
                            {
View Full Code Here

TOP

Related Classes of morph.common.ability.AbilitySwim

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.