Newer
Older
CactusClient / src / java3d / AmbientLight.java
n-konishi on 8 May 2018 187 bytes first commit
package java3d;

public class AmbientLight extends Light {

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