summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2015-10-17Merge pull request #2256 from sheepandshepherd/list-editsJuan Linietsky
List::move_before updates front/back pointers, fixes #2255
2015-10-17Merge pull request #2266 from MrGreenTea/masterJuan Linietsky
added floor() and ceil() to Vector3
2015-10-17Merge pull request #2479 from firefly2442/cppcheck-unusedvarsJuan Linietsky
ran cppcheck, found unused variables
2015-10-17Merge pull request #2520 from bojidar-bg/patch-3Juan Linietsky
Add missing \n to world_wrap.
2015-10-17Merge pull request #2531 from bojidar-bg/patch-4Juan Linietsky
Fix parameters of funcRef::call_func
2015-10-17Merge pull request #2584 from buresu/fix-parentheses-equality-warningsJuan Linietsky
[OSX Clang] Fix parentheses-equality warnings
2015-10-16Merge branch 'master' of https://github.com/okamstudio/godotreduz
Conflicts: scene/resources/packed_scene.h
2015-10-13-A little More control about pixel snapping in 2DJuan Linietsky
2015-10-10Merge branch 'master' of https://github.com/okamstudio/godotreduz
2015-10-10Large improvements on scene packing and managementreduz
-Ability to edit and keep changes of instanced scenes and sub-scenes -Ability to inherit from other scenes
2015-10-09fix parentheses-equality warnings of osx clang近藤 直人
2015-10-08newline fixesreduz
2015-10-01-Added ability to use cubic interpolation on image resize (little more ↵Juan Linietsky
quality on non-po2 resizing) -Added ability for exporter to shrink images to non-integer values. Helps if you want to convert your game artwork from 1080->720 or similar
2015-09-26Fix some copy-paste mistakes in linear/db volume functionsRémi Verschelde
2015-09-25Update mi.nameBojidar Marinov
2015-09-25Removed a badly listed parameter from funcRef::call_func...Bojidar Marinov
2015-09-24Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2015-09-24Added ability to set custom mouse cursors. Not hardware accelerated yet.Juan Linietsky
2015-09-24Add missing \n to world_wrap. Close #2516Bojidar Marinov
The issue was that world_wrap would skip over newlines, without adding them to the output.
2015-09-23Fix _xml_unescape, as suggested by @reduzBojidar Marinov
2015-09-23Flip < and > in String::xml_escape. Close #2511Bojidar Marinov
Before > referred to &lt; and < to &gt;, which is incorrect...
2015-09-21Properly implement OS.alert() from script, and use xmessage on X11Juan Linietsky
2015-09-16ran cppcheck, found unused variablesfirefly2442
2015-09-03merged some stuff for okamJuan Linietsky
2015-08-30new editor settings customization of where to run the game from the editorJuan Linietsky
2015-08-29-display/emulate_touchscreen now really emulates a touchscreenJuan Linietsky
-icons to show node menus
2015-08-25make sure array is created if not existing, as noted by Guilherme FelipeJuan Linietsky
2015-08-25Show documentation for properties on hover.Juan Linietsky
This works if the property has been documented (about half are at this point)
2015-08-23Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2015-08-23**WARNING BEFORE PULLING**Juan Linietsky
This push changes the binary and XML formats and bumps the major version to 2.0. As such, files saved in this version WILL NO LONGER WORK IN PREVIOUS VERSIONS. This compatibility breakage with older versions was required in order to properly provide project refactoring tools. If I were you, unless you are brave, I would wait a week or two before pulling, in case of bugs :) Summary of Changes -New Filesystem dock, with filesystem & tree view modes. -New refactoring tools, to change or fix dependencies. -Quick search dialog, to quickly search any file
2015-08-06Add OS.get_system_time_msecMaximillian
2015-08-06-Merged the file server with the live editing and remote debugJuan Linietsky
-It is now really easy to deploy an android build with debug, and debug it
2015-08-04more debugger fixesJuan Linietsky
-setting/clearing breakpoints during run-time now works -multi-line strings resulted in wrong line numbers in bytecode, fixed
2015-08-04added bindings for screen rotation in OSJuan Linietsky
2015-08-04error debuggerJuan Linietsky
shows the list of errors that happened during running the game, traces can be analyzed
2015-08-02live debug fixesJuan Linietsky
removing node in live debugging fixed
2015-08-02Live edit WORK IN PROGRESSJuan Linietsky
1) press the heart while the game is running 2) select a scene to live edit from the opened scenes 3) edit/add/remove nodes or resources, change their properties, etc. 4) watch changes reflected in running game, in all places this scene is edited 5) It's not perfect obviously, but the aim of it is to try to reflect your changes as best as possible in the running game.
2015-07-28adding some base64 marshallspunto-
2015-07-15added floor() and ceil() to Vector3MrGreenTea
2015-07-10Fix List::move_before for front and back elementssheepandshepherd
2015-06-30Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky
2015-06-30small fixesJuan Linietsky
2015-06-30-some changes by okamJuan Linietsky
2015-06-29Several performance improvements, mainly in loading and instancing scenes ↵Juan Linietsky
and resources. A general speedup should be apparent, with even more peformance increase when compiling optimized. WARNING: Tested and it seems to work, but if something breaks, please report.
2015-06-26improved get_node(), connect(), etc code completion.Juan Linietsky
-properly completes text arguments -includes the "/root" autoloads
2015-06-24added ability to define signals in scriptJuan Linietsky
closes #2175
2015-06-23Added helper methods to InputEventJaguar
2015-06-22Merge pull request #2072 from jrimclean/masterJuan Linietsky
Interpolation for affine transformations/Bound rot/pos Matrix32 constructor
2015-06-22small in place fixesJuan Linietsky
2015-06-22Merge pull request #2144 from Krzycho666/UndoRedo_fixJuan Linietsky
added GDscript bidings for UndoRedo class