https://github.com/wurst-imperium/wi-zoom
The zoom from the Wurst Client as a standalone Minecraft mod.
https://github.com/wurst-imperium/wi-zoom
curseforge curseforge-mod fabric fabricmc-mod forge java minecraft minecraft-fabric-mod minecraft-forge minecraft-mod mod modded-minecraft modrinth modrinth-mod neoforge neoforge-mod wi-zoom wurst-client zoom
Last synced: 4 months ago
JSON representation
The zoom from the Wurst Client as a standalone Minecraft mod.
- Host: GitHub
- URL: https://github.com/wurst-imperium/wi-zoom
- Owner: Wurst-Imperium
- License: gpl-3.0
- Created: 2019-10-28T13:08:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-08T18:13:37.000Z (about 1 year ago)
- Last Synced: 2025-04-12T09:11:32.488Z (about 1 year ago)
- Topics: curseforge, curseforge-mod, fabric, fabricmc-mod, forge, java, minecraft, minecraft-fabric-mod, minecraft-forge, minecraft-mod, mod, modded-minecraft, modrinth, modrinth-mod, neoforge, neoforge-mod, wi-zoom, wurst-client, zoom
- Language: Java
- Homepage: https://go.wimods.net/from/github.com/Wurst-Imperium/WI-Zoom?to=https://www.wimods.net/wi-zoom/?utm_source=GitHub&utm_medium=WI+Zoom&utm_content=WI+Zoom+GitHub+repo+sidebar+website+link
- Size: 1.26 MB
- Stars: 30
- Watchers: 4
- Forks: 19
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
- Security: SECURITY.md
Awesome Lists containing this project
README
# WI Zoom (Wurst-Imperium Zoom)
WI Zoom is the zoom from the [Wurst Client](https://go.wimods.net/from/github.com/Wurst-Imperium/WI-Zoom?to=https://www.wurstclient.net/) as a standalone Minecraft mod, letting you zoom in and out with the mouse wheel and providing up to 50x magnification without the need for a spyglass. This mod is fully compatible with OptiFine and Sodium, but unlike OptiFine's zoom, WI Zoom lets the camera move in a logical way, without making it wobble around. WI Zoom supports all of the latest Minecraft versions, including snapshots.

## Downloads
[](https://go.wimods.net/from/github.com/Wurst-Imperium/WI-Zoom?to=https://www.wimods.net/wi-zoom/download/?utm_source=GitHub&utm_medium=WI+Zoom&utm_campaign=README.md&utm_content=WI+Zoom+GitHub+repo+download+button)
## Installation
> [!IMPORTANT]
> Always make sure that your modloader and all of your mods are made for the same Minecraft version. Your game will crash if you mix different versions.
### Installation using Fabric
1. Install [Fabric Loader](https://go.wimods.net/from/github.com/Wurst-Imperium/WI-Zoom?to=https://fabricmc.net/use/installer/).
2. Add [Fabric API](https://go.wimods.net/from/github.com/Wurst-Imperium/WI-Zoom?to=https://modrinth.com/mod/fabric-api) to your mods folder.
3. Add WI Zoom to your mods folder.
### Installation using NeoForge
1. Install [NeoForge](https://go.wimods.net/from/github.com/Wurst-Imperium/WI-Zoom?to=https://neoforged.net/).
2. Add WI Zoom to your mods folder.
## Features
- Up to 50x zoom!
- No spyglass needed!
- Zoom in and out with the mouse wheel!
- No wobbly camera nonsense!
- Dynamic mouse sensitivity! (since v1.1)
- Fully compatible with OptiFine / Sodium!
## How to zoom
Hold down the V key to activate the zoom (this keybind can be changed).
While zooming, you can use the mouse wheel to zoom in further.
## Changing the zoom keybind
How to change the keybind (click to expand)
In the pause menu, click on "Options...".

In the Options menu, click on "Controls...".

In the Controls menu, scroll down to the "WI Zoom" section. If you don't have any other mods installed, you will find this section at the very bottom.

## Supported languages
- Azerbaijani (Azerbaijan) (since v1.5)
- Chinese (Simplified/Mainland) (since v1.4)
- Chinese (Traditional/Taiwan) (since v1.4)
- Cantonese (Hong Kong) (since v1.4)
- Classical Chinese (since v1.4)
- Dutch (Netherlands) (since v1.5)
- English (US)
- Estonian (Estonia) (since v1.4)
- French (France) (since v1.4)
- German (Germany)
- Kurdish (since v1.5)
- Portuguese (Brazil) (since v1.5)
- Russian (Russia) (since v1.3)
- Turkish (Turkey) (since v1.5)
- Ukrainian (Ukraine) (since v1.5)
## Development Setup
> [!IMPORTANT]
> Make sure you have [Java Development Kit 21](https://go.wimods.net/from/github.com/Wurst-Imperium/WI-Zoom?to=https://adoptium.net/?variant=openjdk21&jvmVariant=hotspot) installed. It won't work with other versions.
### Development using Eclipse
1. Clone the repository:
```pwsh
git clone https://github.com/Wurst-Imperium/WI-Zoom.git
cd WI-Zoom
```
2. Generate the sources:
In Fabric versions:
```pwsh
./gradlew genSources eclipse
```
In NeoForge versions:
```pwsh
./gradlew eclipse
```
3. In Eclipse, go to `Import...` > `Existing Projects into Workspace` and select this project.
4. **Optional:** Right-click on the project and select `Properties` > `Java Code Style`. Then under `Clean Up`, `Code Templates`, `Formatter`, import the respective files in the `codestyle` folder.
### Development using VSCode / Cursor
> [!TIP]
> You'll probably want to install the [Extension Pack for Java](https://go.wimods.net/from/github.com/Wurst-Imperium/WI-Zoom?to=https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-pack) to make development easier.
1. Clone the repository:
```pwsh
git clone https://github.com/Wurst-Imperium/WI-Zoom.git
cd WI-Zoom
```
2. Generate the sources:
In Fabric versions:
```pwsh
./gradlew genSources vscode
```
In NeoForge versions:
```pwsh
./gradlew eclipse
```
(That's not a typo. NeoForge doesn't have `vscode`, but `eclipse` works fine.)
3. Open the `WI-Zoom` folder in VSCode / Cursor.
4. **Optional:** In the VSCode settings, set `java.format.settings.url` to `https://raw.githubusercontent.com/Wurst-Imperium/WI-Zoom/master/codestyle/formatter.xml` and `java.format.settings.profile` to `Wurst-Imperium`.
### Development using IntelliJ IDEA
I don't use or recommend IntelliJ, but the commands to run would be:
```pwsh
git clone https://github.com/Wurst-Imperium/WI-Zoom.git
cd WI-Zoom
./gradlew genSources idea
```