NeonPostProcessEvent

public class NeonPostProcessEvent extends NeonEvent {

    public NeonRenderStack getRenderStack();

    public State getStage();

    public boolean isBlur();

    public boolean isShadow();

    public enum State {
        BLUR,
        SHADOW
    }
    
}

Last updated