I’ve powered a new release of my project:
.
I need help on lights:
which could be the right combination of them to have a realistic effect?
My setupLightning method is very simple:
public void setupLighting() {
am=new AmbientLight();
am.setColor(new ColorRGBA(1,1,1,.75f));
rootNode.addLight(am);
dl = new DirectionalLight();
dl.setDirection(new Vector3f(-1, -1, -1f).normalizeLocal());
dl.setColor(new ColorRGBA(1,1,1,.15f));
rootNode.addLight(dl);
dl2 = new DirectionalLight();
dl2.setDirection(new Vector3f(-1, 1, 1f).normalizeLocal());
dl2.setColor(new ColorRGBA(1,1,1,.15f));
rootNode.addLight(dl2);
}
where my shadow direction is the same of dl2 direction
any help would be appreciated
thanks
bye