Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void apply(Data src, Node root, XbufContext context, Logger log) {
switch(srcl.getKind()){
case UNRECOGNIZED:
case undef: {
throw new IllegalArgumentException("ligth.kind is not supported '"+ srcl.getKind().name() +"'");
throw new IllegalArgumentException("light.kind is not supported '"+ srcl.getKind().name() +"'");
}
case spot:{
SpotLight l=(SpotLight)light;
Expand Down Expand Up @@ -106,7 +106,7 @@ private Light makeLight(Lights.Light srcl) {
switch(srcl.getKind()){
case UNRECOGNIZED:
case undef: {
throw new IllegalArgumentException("ligth.kind is not supported '"+ srcl.getKind().name() +"'");
throw new IllegalArgumentException("light.kind is not supported '"+ srcl.getKind().name() +"'");
}
case ambient:
l0=new AmbientLight();
Expand Down