mirror of
https://github.com/godotengine/godot.git
synced 2024-12-03 09:52:18 +08:00
8c886b9d7a
Fixes #3881 Vibration support is not optimal yet as it doesn't try to emulate the "weak" and "strong" motor strength, but just takes the parameter with the highest value for the vibration gain.
14 lines
205 B
Plaintext
14 lines
205 B
Plaintext
Import('env')
|
|
|
|
files = [
|
|
'os_osx.mm',
|
|
'godot_main_osx.mm',
|
|
'audio_driver_osx.cpp',
|
|
'sem_osx.cpp',
|
|
# 'context_gl_osx.cpp',
|
|
'dir_access_osx.mm',
|
|
'joystick_osx.cpp',
|
|
]
|
|
|
|
env.Program('#bin/godot',files)
|