initial commit
This commit is contained in:
parent
3c9ee26b06
commit
22186c33b9
1458 changed files with 282792 additions and 0 deletions
18
java/src/game/dimension/Semi.java
Executable file
18
java/src/game/dimension/Semi.java
Executable file
|
@ -0,0 +1,18 @@
|
|||
package game.dimension;
|
||||
|
||||
public final class Semi extends Dimension {
|
||||
Semi(int id, String name) {
|
||||
super(id, name);
|
||||
}
|
||||
|
||||
public Semi(int id, String name, int sky, int fog, int clouds, float temperature, int brightness) {
|
||||
super(id, name);
|
||||
this.setPhysics(1L, 1L, 0.0f, 10.0f, temperature, brightness);
|
||||
this.setStarBrightness(0.5f).setDeepStarBrightness(0.5f);
|
||||
this.setSkyColor(sky).setFogColor(fog).setCloudColor(clouds);
|
||||
}
|
||||
|
||||
public final DimType getType() {
|
||||
return DimType.SEMI;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue