Skip to content

Instantly share code, notes, and snippets.

View miuru0's full-sized avatar

Miguel miuru0

  • Spain
View GitHub Profile
@miuru0
miuru0 / roblox_mesh.py
Created August 14, 2023 13:41
Roblox mesh version 4.0.0 blender import script
import bpy
import struct
from mathutils import Vector
def readu32(inf):
return struct.unpack("<I", inf.read(4))[0]
def readu16(inf):