Package org.spongepowered.api.effect
Interface VanishState.Factory
- 
- Enclosing interface:
- VanishState
 
 public static interface VanishState.Factory
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description VanishStateunvanished()AVanishStatethat is visible with the following defaults:VanishState.invisible()=falseVanishState.affectsMonsterSpawning()=trueVanishState.untargetable()=falseVanishState.createsSounds()=trueVanishState.createsParticles()=trueVanishStatevanished()Creates aVanishStatethat is invisible with the following defaults:VanishState.invisible()=trueVanishState.affectsMonsterSpawning()=falseVanishState.untargetable()=trueVanishState.createsSounds()=falseVanishState.createsParticles()=false
 
- 
- 
- 
Method Detail- 
vanishedVanishState vanished() Creates aVanishStatethat is invisible with the following defaults:- VanishState.invisible()=- true
- VanishState.affectsMonsterSpawning()=- false
- VanishState.untargetable()=- true
- VanishState.createsSounds()=- false
- VanishState.createsParticles()=- false
 - Returns:
- A newly created invisible VanishState
 
 - 
unvanishedVanishState unvanished() AVanishStatethat is visible with the following defaults:- VanishState.invisible()=- false
- VanishState.affectsMonsterSpawning()=- true
- VanishState.untargetable()=- false
- VanishState.createsSounds()=- true
- VanishState.createsParticles()=- true
 - Returns:
- A newly created visible VanishState
 
 
- 
 
-