summaryrefslogtreecommitdiff
path: root/platform
AgeCommit message (Collapse)Author
2015-03-16New option to send canvas to render bufferJuan Linietsky
allows to use 3D environment effects for post processing such as Glow, Bloom, HDR, etc. in 2D.
2015-03-03Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
Conflicts: modules/gdscript/gd_tokenizer.cpp scene/resources/shader_graph.h
2015-03-03merges from okam repoJuan Linietsky
2015-03-02Merge pull request #1437 from Hinsbart/fix_win_joyJuan Linietsky
fix get joystick name from registry on some systems
2015-03-02support for 2D shadow castersJuan Linietsky
Added support for 2D shadow casters. *DANGER* Shaders in CanvasItem CHANGED, if you are using shader in a CanvasItem and pull this, you will lose them. Shaders now work through a 2D material system similar to 3D. If you don't want to lose the 2D shader code, save the shader as a .shd, then create a material in CanvasItem and re-assign the shader.
2015-02-25fix get joystick name from registry on some systemsHinsbart
2015-02-18support for light and normal mapping in 2DJuan Linietsky
2015-02-17fix for “no viable conversion from 'NSPoint' (aka '_NSPoint') to ↵greay
'CGPoint'” build error on OS X
2015-02-15begin new serialization frameworkJuan Linietsky
also got rid of STL dependency on triangulator
2015-02-14fixes to mouse warpJuan Linietsky
-can warp now from viewport and control, in their respective coordinate systems -warp is now local to the window on Windows and OSX. IF YOU RUN OSX, PLEASE TEST THIS! And make sure it works!, new code is in OS_OSX::warp_mouse_pos. I don't have OSX so i can't test!
2015-02-12fix get_joy_name() on windowsHinsbart
2015-02-10add support for CADisplayLinkRhody Lugo
2015-02-09Merge pull request #1300 from umxprime/fix/ios-init-crashJuan Linietsky
Fix init crash on iPad 1st gen device with iOS 5.1.1
2015-02-09Merge pull request #1299 from umxprime/fix/isim-sdk-pathJuan Linietsky
Fix iOS Simulator SDK path for isim platform.
2015-02-09Merge pull request #1259 from laganojunior/feature/fix_modifier_key_unpressJuan Linietsky
Modifiers are unset on events for the modifier key itself
2015-01-27Adjust x11/detect.pysambler
Test if clang is defined in CC/CXX/LD - this allows a specific version of clang to be defined move appending -DTYPED_METHOD_BIND to keep clang options together move sanitize option out of use_llvm test, gcc48+ also supports sanitize=address
2015-01-23Fix init crash on iPad 1st gen device with iOS 5.1.1Maxime CHAPELET
2015-01-22Fix iOS Simulator SDK path for isim platform.Maxime CHAPELET
2015-01-17Fix whitespace on previous commitManuel Lagang
Choose tabs or spaces, not both!
2015-01-17Modifiers are unset on events for the modifier key itselfManuel Lagang
This patch removes modifiers when processing key events for the particular modifier key. For example, previously a Shift keypress would register as a Shift + Shift modifier event. This would cause issues when a modifier key as the action key in the input map, because unpresses of the modifier key don't match as matching inputs for that action. E.g. if Shift is used as an action, the stored action event is Shift + Shift modifier (as indicated in the editor as "Shift + Shift". The unpress event does not have the Shift modifier set, so the event of unpressing Shift + no modifier doesn't match the action which has the modifier set. This patch removes the shift modifier on just pressing the Shift key down, so the action event is registered as just Shift with no modifier (as indicated in the editor as "Shift"), which matches the unpress event.
2015-01-18Fix mingw windows build errormarynate
2015-01-17Merge pull request #1188 from hurikhan/scons_coloredJuan Linietsky
Scons colored
2015-01-17Merge pull request #1223 from NateWardawg/masterJuan Linietsky
1: File path in save dialog automatically appended with correct extension if not manually added by the user. 2: Removed .bin as default extension for Linux exports as it causes problems for common file managers.
2015-01-17added nvidia optimus enablementthe_mech
2015-01-15Set the default Linux extension to nothing.Nathan Warden
2015-01-13Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2015-01-13fixesJuan Linietsky
2015-01-13-try fixing LLVM color diagnostic on osxhurikhan
2015-01-12osx support for llvm coloring addedhurikhan
2015-01-12SCons: colored compilationhurikhan
2015-01-11-Initial (untested) implementation of 2D shaders. Probably broken, will be ↵Juan Linietsky
fixed later. -fixed issue of opacity not working
2015-01-10Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2015-01-102D Rewrite Step [1]Juan Linietsky
-=-=-=-=-=-=-=-=-=- -Moved drawing code to a single function that takes linked list (should make it easier to optimize in the future). -Implemented Z ordering of 2D nodes. Node2D and those that inherit have a visibility/Z property that affects drawing order (besides the tree order) -Removed OpenGL ES 1.x support. Good riddance!
2015-01-08Create the test string to detect kb layouts directly from the unicode charsRhody Lugo
2015-01-08OS X: Add keyboard layout detection and fix buildRhody Lugo
2015-01-04-attempt to be friendlier on non english keyboardsJuan Linietsky
2015-01-03Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2015-01-03-Work in progress visual shader editor *DOES NOT WORK YET*Juan Linietsky
2015-01-03-added new code completion guess locations, closes #1032Juan Linietsky
-moved commandline fix to mingw-only, should fix #1064
2015-01-02-accelerometer precission changed to "GAME" (#1015)Juan Linietsky
2014-12-25Reduce android build size(-fvisibility=hidden)sanikoyes
Fix gridmap link error when disable_3d=Yes
2014-12-21Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
Conflicts: modules/gdscript/gd_editor.cpp Improved code completion for InputEvent (shows members by type)
2014-12-21-ability to set default textures in shader (needed for visual shader editing)Juan Linietsky
-work in progress new graph system (will replace current one) -crash fix in s3m loader (out of bounds acess) -fixed vbox overriding of separation (fixes empty line between section tabs)
2014-12-20FixesJuan Linietsky
-=-=-= -Added missing quaternion constructor -code completion fixes -winrt fixes
2014-12-19Implemented PulseAudio backend and fixed audio driver selection on X11Alexander Stillich
2014-12-16Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2014-12-16New Code CompletionJuan Linietsky
-=-=-=-=-=-=-=-=-=- -Massive improvement to code completion -Argument hinting for functions If you manage to out-smart the code-completion in a situation where completion should be possible to guess, let me know. Please enter the commit message for your changes. Lines starting
2014-12-15Small batch of fixesJuan Linietsky
-=-=-=-=-=-=-=-=-=-= -Fixed looping error in AudioStreamResampled -winrt port progress -fixes in material in ambient light
2014-12-08Update ios simulator build config file to build under new ios SDKmarynate
2014-12-07More FixesJuan Linietsky
-=-=-=-=-= -Bug in saving multinline text in xml fixed. #925 -typo in android export fixed. #930