Skip to content

Instantly share code, notes, and snippets.

@siddolo
siddolo / unpack-unitywebdata1.0.py
Last active January 12, 2026 08:18
Unpack UnityWebData1.0 used in Unity WebGL games
#!/usr/bin/env python3
# Ref: https://github.com/HearthSim/UnityPack/issues/74
import sys
import os
from unitypack.utils import BinaryReader
SIGNATURE = 'UnityWebData1.0'
class DataFile: