summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-04Merge branch 'master' of http://github.com/okamstudio/godotAnton Yabchinskiy
2014-12-04Merge branch 'master' of https://github.com/okamstudio/godotAnton Yabchinskiy
2014-12-03Merge pull request #917 from thomassigurdsen/masterJuan Linietsky
SConstruct imports multiprocessing, which is then never used
2014-12-03Remove multiprocessing from imports in SConstructThomas Sigurdsen
Rationale: unused import, also prevented scons from building on my setup.
2014-12-02-fixes to vmethod for buttonJuan Linietsky
2014-12-02-Ability to ask for documents/pictures/etc system dirs.Juan Linietsky
-Fixes to animationplayer -fixes to collada importer
2014-12-01Merge pull request #863 from JIghtuse/masterJuan Linietsky
Fix CppCheck 'duplicateExpression' warning
2014-12-01Merge pull request #867 from adolson/circleshape2d-radius-incrementJuan Linietsky
add sane radius increment to CircleShape2D
2014-11-28Merge branch 'libao'Anton Yabchinskiy
2014-11-28Add missing check for AO_ENABLED in audio_driver_ao.cppAnton Yabchinskiy
2014-11-26-fix sound room params (was not working)Juan Linietsky
-fixes to DAE exporter -ios fixes (video)
2014-11-24Update the list of authors in libao driver sourcesAnton Yabchinskiy
2014-11-22Merge branch 'libao'Anton Yabchinskiy
2014-11-22Include cstring header for memset()Anton Yabchinskiy
2014-11-22Cast samples_in to samples_out with reinterpret_cast<int16_t*>Anton Yabchinskiy
2014-11-22samples_in is an instance variable, prefix it with ad->Anton Yabchinskiy
2014-11-22Fix syntax error in call to ao_play()Anton Yabchinskiy
2014-11-22Merge branch 'libao'Anton Yabchinskiy
2014-11-22Set libao sample format to 16 bitsAnton Yabchinskiy
Some plugins don't support 32 bit samples.
2014-11-22Check return value of ao_play()Anton Yabchinskiy
2014-11-22Write audio samples to libao deviceAnton Yabchinskiy
2014-11-22Change 0 to NULL for ao_open_live() and deviceAnton Yabchinskiy
It's NULL in other places.
2014-11-22Minor code formatting fixes in ao driverAnton Yabchinskiy
2014-11-22Open/close libao audio deviceAnton Yabchinskiy
2014-11-22Initialize/shutdown libaoAnton Yabchinskiy
2014-11-22Use libao driver on X11 platformAnton Yabchinskiy
2014-11-22Add ao/ subdir to drivers/SCsubAnton Yabchinskiy
2014-11-22Add 'ao' build optionAnton Yabchinskiy
2014-11-22Import sources for libao driver (unfinished, based on dummy driver)Anton Yabchinskiy
2014-11-22Disable X11 joystick functions also for OpenBSDAnton Yabchinskiy
2014-11-22Include string.h for memset() on OpenBSDAnton Yabchinskiy
2014-11-22Include stdlib.h for alloca() on OpenBSDAnton Yabchinskiy
2014-11-22Enable ALSA only for LinuxAnton Yabchinskiy
2014-11-19missing navmesh demo and small fixesJuan Linietsky
2014-11-17NavMeshJuan Linietsky
-=-=-=- -Fixed NavMesh API -New NavMesh demo -Support for animated Particles2D -Fixes for native video playback on iOS
2014-11-13Merge pull request #880 from adolson/editor-shortcut-keysJuan Linietsky
allow Alt+arrow keys to pass through editor
2014-11-13allow Alt+arrow keys to pass through editorDana Olson
2014-11-13Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2014-11-13UDP FixesJuan Linietsky
-=-=-=-=- Curse the day I decided to port UDP code, as it ended up being two nights of work. At least It's done now (I hope). -Fixed UDP Support, API seems stable -Added UDP Chat demo (chat that can lose your packets, heh) -Added helpers to areas and bodies to get list of collided bodies and contained bodies. -Sped up screen/viewport capture code. -Added code to save an image as PNG -Small fix so scripts register their singletons after modules did.
2014-11-13Merge pull request #879 from DCubix/masterJuan Linietsky
GDScript Editor Goodies
2014-11-12Editor goodies updateDiego Lopes
2014-11-12oopsJuan Linietsky
2014-11-12missing bindJuan Linietsky
2014-11-123D Import Import & UDPJuan Linietsky
-=-=-=-=-=-=-=-=-=-=- -Animation Import filter support -Animation Clip import support -Animation Optimizer Fixes, Improvements and Visibile Options -Extremely Experimental UDP support.
2014-11-11Merge pull request #878 from bdero/bdero/fix-animation-tree-player-typoJuan Linietsky
Fix AnimationTreePlayer.node_get_input_source typo
2014-11-11Fixed documentation typoBrandon DeRosier
2014-11-11Fix AnimationTreePlayer.node_get_input_source typoBrandon DeRosier
- Changed node_get_input_sourcre to node_get_input_source
2014-11-09Merge pull request #870 from Gerold31/fix-32bit-linuxJuan Linietsky
Fix compilation error on 32-bit linux
2014-11-09Fix compilation error on 32-bit linuxGerold31
2014-11-08add sane radius incrementDana Olson