- fix in bloom filter wrapper

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7714 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2011-06-23 21:57:12 +00:00
parent 8bfd9fda6a
commit 69aa8676a0

View File

@ -64,10 +64,10 @@ public class JmeBloomFilter extends AbstractFilterNode {
if (obj == null) { if (obj == null) {
return sheet; return sheet;
} }
set.put(makeProperty(obj, float.class, "getBloomIntensity", "setBloomIntensity", "Intesity")); set.put(makeProperty(obj, float.class, "getBloomIntensity", "setBloomIntensity", "Intensity"));
set.put(makeProperty(obj, float.class, "getBlurScale", "setBlurScale", "Blur Scale")); set.put(makeProperty(obj, float.class, "getBlurScale", "setBlurScale", "Blur Scale"));
set.put(makeProperty(obj, float.class, "getDownSamplingFactor", "setDownSamplingFactor", "Downsampling Factor")); set.put(makeProperty(obj, float.class, "getDownSamplingFactor", "setDownSamplingFactor", "Downsampling Factor"));
set.put(makeProperty(obj, float.class, "getExposureCutoff", "setExposureCutoff", "Exposure Cutoff")); set.put(makeProperty(obj, float.class, "getExposureCutOff", "setExposureCutOff", "Exposure Cutoff"));
set.put(makeProperty(obj, float.class, "getExposurePower", "setExposurePower", "Exposure Power")); set.put(makeProperty(obj, float.class, "getExposurePower", "setExposurePower", "Exposure Power"));
sheet.put(set); sheet.put(set);
return sheet; return sheet;