├── .gitignore ├── LICENSE ├── README.md ├── SCsub ├── config.py ├── doc_classes ├── FmodBankResource.xml ├── FmodEventInstance.xml ├── FmodEventResource.xml ├── FmodManager.xml └── FmodVCA.xml ├── editor ├── editor_fmod_event_inspector.cpp ├── editor_fmod_event_inspector.h ├── editor_fmod_manager.cpp ├── editor_fmod_manager.h ├── fmod_event_path_property_editor.cpp └── fmod_event_path_property_editor.h ├── gd_fmod_event_instance.cpp ├── gd_fmod_event_instance.h ├── gd_fmod_gd4.cpp ├── gd_fmod_gd4.h ├── gd_fmod_vca.cpp ├── gd_fmod_vca.h ├── register_types.cpp ├── register_types.h └── resources ├── fmod_bank_resource.cpp ├── fmod_bank_resource.h ├── fmod_bank_resource_loader.cpp ├── fmod_bank_resource_loader.h ├── fmod_event_resource.cpp └── fmod_event_resource.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/README.md -------------------------------------------------------------------------------- /SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/SCsub -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/config.py -------------------------------------------------------------------------------- /doc_classes/FmodBankResource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/doc_classes/FmodBankResource.xml -------------------------------------------------------------------------------- /doc_classes/FmodEventInstance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/doc_classes/FmodEventInstance.xml -------------------------------------------------------------------------------- /doc_classes/FmodEventResource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/doc_classes/FmodEventResource.xml -------------------------------------------------------------------------------- /doc_classes/FmodManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/doc_classes/FmodManager.xml -------------------------------------------------------------------------------- /doc_classes/FmodVCA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/doc_classes/FmodVCA.xml -------------------------------------------------------------------------------- /editor/editor_fmod_event_inspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/editor/editor_fmod_event_inspector.cpp -------------------------------------------------------------------------------- /editor/editor_fmod_event_inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/editor/editor_fmod_event_inspector.h -------------------------------------------------------------------------------- /editor/editor_fmod_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/editor/editor_fmod_manager.cpp -------------------------------------------------------------------------------- /editor/editor_fmod_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/editor/editor_fmod_manager.h -------------------------------------------------------------------------------- /editor/fmod_event_path_property_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/editor/fmod_event_path_property_editor.cpp -------------------------------------------------------------------------------- /editor/fmod_event_path_property_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/editor/fmod_event_path_property_editor.h -------------------------------------------------------------------------------- /gd_fmod_event_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/gd_fmod_event_instance.cpp -------------------------------------------------------------------------------- /gd_fmod_event_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/gd_fmod_event_instance.h -------------------------------------------------------------------------------- /gd_fmod_gd4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/gd_fmod_gd4.cpp -------------------------------------------------------------------------------- /gd_fmod_gd4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/gd_fmod_gd4.h -------------------------------------------------------------------------------- /gd_fmod_vca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/gd_fmod_vca.cpp -------------------------------------------------------------------------------- /gd_fmod_vca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/gd_fmod_vca.h -------------------------------------------------------------------------------- /register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/register_types.cpp -------------------------------------------------------------------------------- /register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/register_types.h -------------------------------------------------------------------------------- /resources/fmod_bank_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/resources/fmod_bank_resource.cpp -------------------------------------------------------------------------------- /resources/fmod_bank_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/resources/fmod_bank_resource.h -------------------------------------------------------------------------------- /resources/fmod_bank_resource_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/resources/fmod_bank_resource_loader.cpp -------------------------------------------------------------------------------- /resources/fmod_bank_resource_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/resources/fmod_bank_resource_loader.h -------------------------------------------------------------------------------- /resources/fmod_event_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/resources/fmod_event_resource.cpp -------------------------------------------------------------------------------- /resources/fmod_event_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordigulley/fmod_gd4/HEAD/resources/fmod_event_resource.h --------------------------------------------------------------------------------