Replay Mod (Fabric & Forge)

Replay Mod (Fabric & Forge)

787k Downloads

Record first person with ReplayMod

snoopchallenge opened this issue ยท 1 comments

commented

I feel like a great feature for people would be to record first person with guis in replaymod, it would help people who have bad performance with screen capture software but this would also require recording the person playing's inventory

commented

Short answer: Once Mojang allows you to see the GUIs of other players when spectating them in spectator mode.

Long answer (quoting a reply of myself to a similar request on our Discord):

(on recording the inventory / GUI in general)
regardless of whether "it's worth it", from my point of view this is more an issue with feasibility:
the only reason the ReplayMod as a concept is feasible, is because there already exist a generic way to serialize (i.e. convert to/from a consistent binary fromat) the entire world state in Minecraft because that's fundamentally required for multiplayer to work (and singleplayer is just running an integrated server these days). all the world state has to somehow be replicated over the network and we can just take that replication data and store it for later (in actuality there's lots of complicating factors but vastly simplified that's how it works).
there's no such thing for GUIs. MC has no need to sync the exact state of one client's user interface to any other client. as such there's no generic way to record and later replay that state. and without a generic way to do that, it's basically a pick two out of three:

  • compact storage and flexible replay (i.e. not just a generic screen recorder)
  • possible to implement and maintain within reasonable effort
  • supports all the GUIs (including with third-party mods)