Package com.jme3.light
Interface LightProbeBlendingStrategy
- All Known Implementing Classes:
BasicProbeBlendingStrategy
,WeightedProbeBlendingStrategy
public interface LightProbeBlendingStrategy
This is the interface to implement if you want to make your own LightProbe blending strategy.
The strategy sets the way multiple LightProbes will be handled for a given object.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
populateProbes
(Geometry g, LightList lightList) Populates the resulting light probes into the given light list.void
registerProbe
(LightProbe probe) Registers a probe with this strategy
-
Method Details
-
registerProbe
Registers a probe with this strategy- Parameters:
probe
- the probe to be registered
-
populateProbes
Populates the resulting light probes into the given light list.- Parameters:
g
- the geometry for which the light list is computedlightList
- the result light list
-