forked from Asek3/Oculus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https: //github.com/IrisShaders/Iris/commit/26a323686958bebec59bbcd128defa2717f64759 Co-Authored-By: IMS <[email protected]>
- Loading branch information
Showing
8 changed files
with
191 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 7 additions & 5 deletions
12
src/main/java/net/coderbot/iris/shaderpack/DimensionId.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
package net.coderbot.iris.shaderpack; | ||
|
||
public enum DimensionId { | ||
OVERWORLD, | ||
NETHER, | ||
END | ||
} | ||
import net.coderbot.iris.shaderpack.materialmap.NamespacedId; | ||
|
||
public class DimensionId { | ||
public static NamespacedId OVERWORLD = new NamespacedId("minecraft", "overworld"); | ||
public static NamespacedId NETHER = new NamespacedId("minecraft", "the_nether"); | ||
public static NamespacedId END = new NamespacedId("minecraft", "the_end"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/main/java/net/coderbot/iris/shaderpack/ProgramSetInterface.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package net.coderbot.iris.shaderpack; | ||
|
||
public interface ProgramSetInterface { | ||
class Empty implements ProgramSetInterface { | ||
public static final ProgramSetInterface INSTANCE = new Empty(); | ||
} | ||
} |
Oops, something went wrong.