
Modrinth · Minecraft mod
Freelook
Allows you to rotate your camera freely around your character!
Quick answer
Which Freelook release should I use?
Freelook 2.0.0+mc1.21.10 targets 1.21.9, 1.21.10, 1.21.11 with Fabric. It must be installed on the client. Do not install it on the dedicated server. All 2 required mods have matching files.
Where it goes
Is Freelook required on the client, server, or both?
It must be installed on the client. Do not install it on the dedicated server.
This file is marked client-only.
What else does Freelook 2.0.0+mc1.21.10 need?
2.0.0+mc1.21.10. Change the file and its required mods may change too.
Install YetAnotherConfigLib (YACL), Fabric API first. We found matching files for this game-version and loader setup. 1 comes through another mod in the chain.
1 extra mod was pulled in by another dependency. Indented rows show who needs each one. We only count dependency files that match this setup. A file for another loader does not fill the gap.
Before you install it
Add Freelook without breaking your instance.
Built for Freelook 2.0.0+mc1.21.10. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use 2.0.0+mc1.21.10. It targets 1.21.9, 1.21.10, 1.21.11 with Fabric; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
Install YetAnotherConfigLib (YACL), Fabric API first. We found matching files for this game-version and loader setup. 1 comes through another mod in the chain.
- 03
Put it on the correct side
It must be installed on the client. Do not install it on the dedicated server.
- 04
Pick the file you checked
Use the “Get this file” button beside 2.0.0+mc1.21.10. It opens that exact file at the source.
About this project
What does Freelook add?
Freelook Mod
Allows you to rotate your camera freely around your character!
Features
- Multiple Camera Perspectives
- Customizable Activation Style
- Camera Cycle Integration
- Smooth Transitions
Server Opt-Opt
Some servers may consider freelook a competitive advantage. As of 2.0.0, Freelook includes a simple opt‑out protocol.
How it works
- When a player joins, the client sends a
freelook:handshakepacket. - If the server wants to disable freelook, it responds with a
freelook:disablepacket. - Then the player cannot use freelook for that session.
Click to expand code example
public class Example implements ModInitializer {
@Override
public void onInitialize() {
PayloadTypeRegistry.clientboundPlay().register(DisableModPayload.TYPE, DisableModPayload.CODEC);
PayloadTypeRegistry.serverboundPlay().register(HandshakePayload.TYPE, HandshakePayload.CODEC);
ServerPlayNetworking.registerGlobalReceiver(HandshakePayload.TYPE,
(payload, ctx) -> ServerPlayNetworking.send(ctx.player(), new DisableModPayload())
);
}
public record DisableModPayload() implements CustomPacketPayload {
public static final Type<DisableModPayload> TYPE = new Type<>(Identifier.parse("freelook:disable"));
public static final StreamCodec<RegistryFriendlyByteBuf, DisableModPayload> CODEC = StreamCodec.unit(new DisableModPayload());
@Override
public Type<? extends CustomPacketPayload> type() {
return TYPE;
}
}
public record HandshakePayload() implements CustomPacketPayload {
public static final Type<HandshakePayload> TYPE = new Type<>(Identifier.parse("freelook:handshake"));
public static final StreamCodec<RegistryFriendlyByteBuf, HandshakePayload> CODEC = StreamCodec.unit(new HandshakePayload());
@Override
public Type<? extends CustomPacketPayload> type() {
return TYPE;
}
}
}
Code licensed under LGPL 3.0.
Project description from Modrinth.
Pick your setup
Freelook by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
26.2
1 loader build26.1.2
1 loader build26.1.1
1 loader build26.1
1 loader build1.21.11
1 loader build1.21.10
1 loader build1.21.9
1 loader build1.21.8
1 loader build1.21.5
1 loader build1.21.4
1 loader build1.21.1
1 loader build1.12.2
1 loader buildShowing the newest 12 of 13 game versions. Older files are in the list below.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
Freelook versions and loaders
2.1.0-beta.4+mc26.2
freelook-2.1.0-beta.4+mc26.2.jar
19 Jun 2026
2.1.0-beta.4+mc26.1
freelook-2.1.0-beta.4+mc26.1.jar
19 Jun 2026
2.1.0-beta.4+mc1.21.11
freelook-2.1.0-beta.4+mc1.21.11.jar
19 Jun 2026
2.1.0-beta.4+mc1.21.10
freelook-2.1.0-beta.4+mc1.21.10.jar
19 Jun 2026
2.1.0-beta.4+mc1.21.8
freelook-2.1.0-beta.4+mc1.21.8.jar
19 Jun 2026
2.1.0-beta.4+mc1.21.5
freelook-2.1.0-beta.4+mc1.21.5.jar
19 Jun 2026
2.1.0-beta.4+mc1.21.4
freelook-2.1.0-beta.4+mc1.21.4.jar
19 Jun 2026
2.1.0-beta.4+mc1.21.1
freelook-2.1.0-beta.4+mc1.21.1.jar
19 Jun 2026
2.1.0-beta.3+mc26.1
freelook-2.1.0-beta.3+mc26.1.jar
17 Jun 2026
2.1.0-beta.3+mc1.21.11
freelook-2.1.0-beta.3+mc1.21.11.jar
17 Jun 2026
2.1.0-beta.3+mc1.21.10
freelook-2.1.0-beta.3+mc1.21.10.jar
17 Jun 2026
2.1.0-beta.3+mc1.21.8
freelook-2.1.0-beta.3+mc1.21.8.jar
17 Jun 2026
Looking for an older file? The official Modrinth project page is in Resources.