├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── common ├── build.gradle └── src │ └── main │ ├── java │ └── me │ │ └── icanttellyou │ │ └── mods │ │ └── photomode │ │ ├── PhotoModeCommon.java │ │ ├── PhotoModeEnvironment.java │ │ ├── client │ │ ├── PhotoModeScreen.java │ │ ├── PhotoModeSliderWidget.java │ │ └── PhotoModeUtils.java │ │ └── mixin │ │ ├── AccessGameRenderer.java │ │ ├── MixinCamera.java │ │ ├── MixinFrustum.java │ │ ├── MixinGameRenderer.java │ │ ├── MixinPostEffectPass.java │ │ ├── MixinRenderSystem.java │ │ ├── MixinWorldRenderer.java │ │ ├── MixinWorldRendererVanilla.java │ │ ├── PhotoModeCommonMixinPlugin.java │ │ └── compat │ │ ├── MixinDefaultChunkRenderer.java │ │ └── MixinSodiumWorldRenderer.java │ └── resources │ ├── PhotoMode-common.mixins.json │ ├── architectury.common.json │ ├── assets │ └── photomode │ │ ├── lang │ │ └── en_us.json │ │ ├── post_effect │ │ ├── blur.json │ │ ├── distantblur.json │ │ ├── eerie.json │ │ ├── inverted.json │ │ ├── outline.json │ │ ├── outline2.json │ │ ├── sepia.json │ │ ├── silhouette.json │ │ ├── tiltshift.json │ │ └── vignette.json │ │ └── shaders │ │ └── post │ │ ├── blur.fsh │ │ ├── blur.json │ │ ├── distantblur.fsh │ │ ├── distantblur.json │ │ ├── eerie.fsh │ │ ├── eerie.json │ │ ├── inverted.fsh │ │ ├── inverted.json │ │ ├── outline.fsh │ │ ├── outline.json │ │ ├── outline2.fsh │ │ ├── outline2.json │ │ ├── sepia.fsh │ │ ├── sepia.json │ │ ├── silhouette.fsh │ │ ├── silhouette.json │ │ ├── tiltshift.fsh │ │ ├── tiltshift.json │ │ ├── vignette.fsh │ │ └── vignette.json │ └── photomode.accesswidener ├── fabric ├── build.gradle └── src │ └── main │ ├── java │ └── me │ │ └── icanttellyou │ │ └── mods │ │ └── photomode │ │ └── fabric │ │ ├── PhotoMode.java │ │ └── PhotoModeEnvironmentImpl.java │ └── resources │ └── fabric.mod.json ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── modrinthrepo.gradle ├── neoforge ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── java │ └── me │ │ └── icanttellyou │ │ └── mods │ │ └── photomode │ │ └── neoforge │ │ ├── PhotoMode.java │ │ └── PhotoModeEnvironmentImpl.java │ └── resources │ ├── META-INF │ └── neoforge.mods.toml │ └── pack.mcmeta └── settings.gradle /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/README.md -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/PhotoModeCommon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/PhotoModeCommon.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/PhotoModeEnvironment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/PhotoModeEnvironment.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/client/PhotoModeScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/client/PhotoModeScreen.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/client/PhotoModeSliderWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/client/PhotoModeSliderWidget.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/client/PhotoModeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/client/PhotoModeUtils.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/AccessGameRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/AccessGameRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinCamera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinCamera.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinFrustum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinFrustum.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinGameRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinGameRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinPostEffectPass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinPostEffectPass.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinRenderSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinRenderSystem.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinWorldRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinWorldRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinWorldRendererVanilla.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/MixinWorldRendererVanilla.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/PhotoModeCommonMixinPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/PhotoModeCommonMixinPlugin.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/compat/MixinDefaultChunkRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/compat/MixinDefaultChunkRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/me/icanttellyou/mods/photomode/mixin/compat/MixinSodiumWorldRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/java/me/icanttellyou/mods/photomode/mixin/compat/MixinSodiumWorldRenderer.java -------------------------------------------------------------------------------- /common/src/main/resources/PhotoMode-common.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/PhotoMode-common.mixins.json -------------------------------------------------------------------------------- /common/src/main/resources/architectury.common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/architectury.common.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/lang/en_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/post_effect/blur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/post_effect/blur.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/post_effect/distantblur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/post_effect/distantblur.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/post_effect/eerie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/post_effect/eerie.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/post_effect/inverted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/post_effect/inverted.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/post_effect/outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/post_effect/outline.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/post_effect/outline2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/post_effect/outline2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/post_effect/sepia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/post_effect/sepia.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/post_effect/silhouette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/post_effect/silhouette.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/post_effect/tiltshift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/post_effect/tiltshift.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/post_effect/vignette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/post_effect/vignette.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/blur.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/blur.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/blur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/blur.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/distantblur.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/distantblur.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/distantblur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/distantblur.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/eerie.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/eerie.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/eerie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/eerie.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/inverted.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/inverted.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/inverted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/inverted.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/outline.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/outline.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/outline.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/outline2.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/outline2.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/outline2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/outline2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/sepia.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/sepia.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/sepia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/sepia.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/silhouette.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/silhouette.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/silhouette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/silhouette.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/tiltshift.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/tiltshift.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/tiltshift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/tiltshift.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/vignette.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/vignette.fsh -------------------------------------------------------------------------------- /common/src/main/resources/assets/photomode/shaders/post/vignette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/assets/photomode/shaders/post/vignette.json -------------------------------------------------------------------------------- /common/src/main/resources/photomode.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/common/src/main/resources/photomode.accesswidener -------------------------------------------------------------------------------- /fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/fabric/build.gradle -------------------------------------------------------------------------------- /fabric/src/main/java/me/icanttellyou/mods/photomode/fabric/PhotoMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/fabric/src/main/java/me/icanttellyou/mods/photomode/fabric/PhotoMode.java -------------------------------------------------------------------------------- /fabric/src/main/java/me/icanttellyou/mods/photomode/fabric/PhotoModeEnvironmentImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/fabric/src/main/java/me/icanttellyou/mods/photomode/fabric/PhotoModeEnvironmentImpl.java -------------------------------------------------------------------------------- /fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/gradlew.bat -------------------------------------------------------------------------------- /modrinthrepo.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/modrinthrepo.gradle -------------------------------------------------------------------------------- /neoforge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/neoforge/build.gradle -------------------------------------------------------------------------------- /neoforge/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.platform=neoforge -------------------------------------------------------------------------------- /neoforge/src/main/java/me/icanttellyou/mods/photomode/neoforge/PhotoMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/neoforge/src/main/java/me/icanttellyou/mods/photomode/neoforge/PhotoMode.java -------------------------------------------------------------------------------- /neoforge/src/main/java/me/icanttellyou/mods/photomode/neoforge/PhotoModeEnvironmentImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/neoforge/src/main/java/me/icanttellyou/mods/photomode/neoforge/PhotoModeEnvironmentImpl.java -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/neoforge/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /neoforge/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/neoforge/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkiesassds/PhotoMode/HEAD/settings.gradle --------------------------------------------------------------------------------