Class RadialBlurEffect
- java.lang.Object
-
- de.coreengine.rendering.renderer.ppeffects.PostProcessingEffect
-
- de.coreengine.rendering.renderer.ppeffects.RadialBlurEffect
-
public class RadialBlurEffect extends PostProcessingEffect
Effect that can apply an radial blur to the post processing process- Author:
- Darius Dinger
-
-
Field Summary
-
Fields inherited from class de.coreengine.rendering.renderer.ppeffects.PostProcessingEffect
shader
-
-
Constructor Summary
Constructors Constructor Description RadialBlurEffect()
Creating new radial blur effect and setting shader
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addImpliedEffects(List<PostProcessingEffect> effects)
Adding all effects that will be implied by this effect to the list.javax.vecmath.Vector2f
getOrigin()
void
setBightness(float bightness)
void
setIntensity(float intensity)
void
setQuality(int quality)
protected void
setUniforms()
-
Methods inherited from class de.coreengine.rendering.renderer.ppeffects.PostProcessingEffect
exit, prepare
-
-
-
-
Method Detail
-
setUniforms
protected void setUniforms()
- Specified by:
setUniforms
in classPostProcessingEffect
-
getOrigin
public javax.vecmath.Vector2f getOrigin()
- Returns:
- Read/writeable origin of the blur
-
setBightness
public void setBightness(float bightness)
- Parameters:
bightness
- New brightness of the blur
-
setIntensity
public void setIntensity(float intensity)
- Parameters:
intensity
- New intensity of the blur
-
setQuality
public void setQuality(int quality)
- Parameters:
quality
- New quality of the blur (iterations)
-
addImpliedEffects
public void addImpliedEffects(List<PostProcessingEffect> effects)
Description copied from class:PostProcessingEffect
Adding all effects that will be implied by this effect to the list.- Specified by:
addImpliedEffects
in classPostProcessingEffect
- Parameters:
effects
- List to add implied effects
-
-