Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
546 changes: 546 additions & 0 deletions addons/fmod/Fmod.gd

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions addons/fmod/Fmod.gdnlib
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[general]

singleton=false
load_once=true
symbol_prefix="fmod_"
reloadable=true

[entry]

Android.arm64-v8a="res://addons/fmod/libs/android/arm64-v8a/libGodotFmod.android.release.arm64-v8a.so"
OSX.64="res://addons/fmod/libs/osx/libGodotFmod.osx.release.64.dylib"
Windows.32="res://addons/fmod/libs/windows/x86/libGodotFmod.windows.release.32.dll"
Windows.64="res://addons/fmod/libs/windows/x86_64/libGodotFmod.windows.release.64.dll"
X11.64="res://addons/fmod/libs/linux/x86_64/libGodotFmod.linux.release.64.so"
X11.32="res://addons/fmod/libs/linux/x86/libGodotFmod.linux.release.32.so"
[dependencies]

Android.arm64-v8a=[ "res://addons/fmod/libs/android/arm64-v8a/libfmod.so", "res://addons/fmod/libs/android/arm64-v8a/libfmodstudio.so" ]
OSX.64=[ "res://addons/fmod/libs/osx/libfmod.dylib", "res://addons/fmod/libs/osx/libfmodstudio.dylib" ]
Windows.64=[ "res://addons/fmod/libs/windows/x86_64/fmod.dll", "res://addons/fmod/libs/windows/x86_64/fmodstudio.dll" ]
Windows.32=[ "res://addons/fmod/libs/windows/x86/fmod.dll", "res://addons/fmod/libs/windows/x86/fmodstudio.dll" ]
X11.64=[ "res://addons/fmod/libs/linux/x86_64/libfmod.so", "res://addons/fmod/libs/linux/x86_64/libfmodstudio.so" ]
X11.32=[ "res://addons/fmod/libs/linux/x86/libfmod.so", "res://addons/fmod/libs/linux/x86/libfmodstudio.so" ]
9 changes: 9 additions & 0 deletions addons/fmod/Fmod.gdns
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[gd_resource type="NativeScript" load_steps=2 format=2]

[ext_resource path="res://addons/fmod/Fmod.gdnlib" type="GDNativeLibrary" id=1]

[resource]
resource_name = "Fmod"
class_name = "Fmod"
library = ExtResource( 1 )
script_class_name = "FmodNative"
8 changes: 8 additions & 0 deletions addons/fmod/fmod_singleton.gd
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
tool
extends EditorPlugin

func _enter_tree():
add_autoload_singleton("Fmod", "res://addons/fmod/Fmod.gd")

func _exit_tree():
remove_autoload_singleton("Fmod")
Binary file not shown.
Binary file not shown.
Binary file added addons/fmod/libs/android/arm64-v8a/libfmod.so
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added addons/fmod/libs/android/armeabi-v7a/libfmod.so
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added addons/fmod/libs/android/x86/libc++_shared.so
Binary file not shown.
Binary file added addons/fmod/libs/android/x86/libfmod.so
Binary file not shown.
Binary file added addons/fmod/libs/android/x86/libfmodstudio.so
Binary file not shown.
Binary file not shown.
Binary file added addons/fmod/libs/android/x86_64/libc++_shared.so
Binary file not shown.
Binary file added addons/fmod/libs/android/x86_64/libfmod.so
Binary file not shown.
Binary file added addons/fmod/libs/android/x86_64/libfmodstudio.so
Binary file not shown.
Binary file not shown.
Binary file added addons/fmod/libs/linux/x86/libfmod.so
Binary file not shown.
Binary file added addons/fmod/libs/linux/x86/libfmodstudio.so
Binary file not shown.
Binary file not shown.
Binary file added addons/fmod/libs/linux/x86_64/libfmod.so
Binary file not shown.
Binary file added addons/fmod/libs/linux/x86_64/libfmodstudio.so
Binary file not shown.
20 changes: 10 additions & 10 deletions bin/bits_gdnlib/bits.gdnlib
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ reloadable=true

[entry]

Haiku.64="res://bits_gdnlib/64/config.cfg"
Haiku.32="res://bits_gdnlib/32/config.cfg"
OSX.64="res://bits_gdnlib/64/config.cfg"
OSX.32="res://bits_gdnlib/32/config.cfg"
UWP.32="res://bits_gdnlib/32/config.cfg"
UWP.64="res://bits_gdnlib/64/config.cfg"
Windows.64="res://bits_gdnlib/64/config.cfg"
Windows.32="res://bits_gdnlib/32/config.cfg"
X11.64="res://bits_gdnlib/64/config.cfg"
X11.32="res://bits_gdnlib/32/config.cfg"
Haiku.64="res://bin/bits_gdnlib/64/config.cfg"
Haiku.32="res://bin/bits_gdnlib/32/config.cfg"
OSX.64="res://bin/bits_gdnlib/64/config.cfg"
OSX.32="res://bin/bits_gdnlib/32/config.cfg"
UWP.32="res://bin/bits_gdnlib/32/config.cfg"
UWP.64="res://bin/bits_gdnlib/64/config.cfg"
Windows.64="res://bin/bits_gdnlib/64/config.cfg"
Windows.32="res://bin/bits_gdnlib/32/config.cfg"
X11.64="res://bin/bits_gdnlib/64/config.cfg"
X11.32="res://bin/bits_gdnlib/32/config.cfg"

[dependencies]

Expand Down