X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=blender_export.py;h=05d1ec06aa5482a1ff35a40ac5cd5771dfca55a0;hb=d4746875c05dd3e077e1b266e50ffe4856b45502;hp=acd28ec3bcfcadbd96bc17cc539bd1508a78f86d;hpb=4a883ac1b2506032f9dddab342712de46f2ca734;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/blender_export.py b/blender_export.py index acd28ec..05d1ec0 100644 --- a/blender_export.py +++ b/blender_export.py @@ -158,6 +158,20 @@ 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_ = [("")] + +class classtype_audio_zone(Structure): + _pack_ = 1 + _fields_ = [("system",c_uint32)] + # Exporter # ==============================================================================