Dax's Wiki
Register
Advertisement

Shaders.class[]

Use MCP to compile Shaders.java.

Hooks.class[]

  1. Open a command window or terminal session.
  2. Use the cd command to navigate to the mods/shaders/source directory.
  3. Compile Hooks.java with the following command if you're using Windows:
javac -cp "./minecraft.jar;../../../nitrous.jar;../contents/files" -d "../contents/hooks" Hooks.java
Use the following command if you're using an unixoid like Linux, FreeBSD or Mac OS X:
javac -cp "./minecraft.jar:../../../nitrous.jar:../contents/files" -d "../contents/hooks" Hooks.java
You'll need to replace ./minecraft.jar with the path to your minecraft.jar (or copy minecraft.jar to your source directory).
Advertisement