FAQ - superstrellaa/CinematicTools GitHub Wiki
Here you'll find answers to the most common questions about CinematicTools. If you still need help, feel free to open an issue on GitHub or check the community discussion.
β Solution:
- Make sure you're using Fabric Loader, not Forge or other loaders.
- Check that you have the required dependencies:
fabric-api
geckolib
creativecore
- Ensure all
.jar
files are placed in themods/
folder.
β Solution:
- The client-side part of the mod must be installed on the client, not just the server.
- Use
/cinematic-client
in a singleplayer world or from a player on the server with OP level.
-
/cinematic-client
is used to create and configure camera paths locally on your client. -
/cinematic-server
is used to save, load, and execute cinematic sequences server-side (for multiplayer or consistent playback).
- Use
/cinematic-client add
to create points. - Adjust settings (duration, interpolation, follow, etc).
- Use
/cinematic-client save myScene
to save it. - Use
/cinematic-server start myScene <players>
to launch it for players.
π See Commands for more.
Yes! Use:
/cinematic-server npc animation play <animation>
π§ Animations must be defined using your model and resource files (e.g. GeckoLib animations).
Use:
/cinematic-server npc walk <name> <x> <y> <z>
Or for faster movement:
/cinematic-server npc run <name> <x> <y> <z>
Cinematics are saved server-side, as NBTs in the world:
.minecraft/saves/<world>
You can play them using:
/cinematic-server start <cinematic> <players>
Interpolations control the smoothness of camera transitions. Available types:
linear
circular
cosine
cubic
hermite
invcular
-
all
(toggle all types)
Use:
/cinematic-client interpolation <type>
It adds a soft transition from the playerβs current position to the first camera point to avoid a jarring cut.
/cinematic-client smooth_start true
π It tries to prevent sudden camera spinning due to large yaw differences between points. Only use it if you notice weird spin behavior.
- Open an issue on GitHub
- Request help in the Modrinth or CurseForge comment section
π₯ Make something epic β and don't forget to wave those NPCs!