X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=blender_export.py;h=a8061e4ed9241baa12cd77c379284a94fcb9339e;hb=a9f402f2e336dadff2207dacf69416a66f50c8f8;hp=acd28ec3bcfcadbd96bc17cc539bd1508a78f86d;hpb=4a883ac1b2506032f9dddab342712de46f2ca734;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/blender_export.py b/blender_export.py index acd28ec..a8061e4 100644 --- a/blender_export.py +++ b/blender_export.py @@ -158,6 +158,21 @@ class classtype_bone(Structure): ("angle_limits",(c_float*3)*2), ("hitbox",(c_float*3)*2)] +class subclass_audio_channel(Structure): + _pack_ = 1 + _fields_ = [("sound",c_uint32), + ("target",c_uint32), + ("")] + +class classtype_audio_system(Structure): + _pack_ = 1 + _fields_ = [("sounds", subclass_audio_channel * 4), + ("len", c_uint32)] + +class classtype_audio_zone(Structure): + _pack_ = 1 + _fields_ = [("system",c_uint32)] + # Exporter # ==============================================================================