Newer
Older
RxSprout / app / src / main / java / java3d / AmbientLight.java
KeijuMatsumoto on 28 Nov 2017 187 bytes [add] Project
package java3d;

public class AmbientLight extends Light {

	@Override
	public Node cloneTree() {
		return new AmbientLight(color);
	}
	
	public AmbientLight(Color3f c){
		super(c);
	}
}