Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-10-17 | Merge pull request #2402 from ERIIX/master | Juan Linietsky | |
Properly free enemies after death in 3d platformer demo. | |||
2015-10-17 | Merge pull request #2522 from ricpelo/master | Juan Linietsky | |
Disable filters for tilemap in 2D Platformer demo | |||
2015-10-10 | Large improvements on scene packing and management | reduz | |
-Ability to edit and keep changes of instanced scenes and sub-scenes -Ability to inherit from other scenes | |||
2015-09-24 | Disable filters for tilemap in 2D Platformer demo | Ricardo Pérez | |
Fixes #2452 | |||
2015-09-20 | Ability to visually debug geometry visually: | Juan Linietsky | |
-Visible 2D and 3D Shapes, Polygons, Tile collisions, etc. -Visible Navmesh and Navpoly -Visible collision contacts for 2D and 3D as a red point -Customizable colors in project settings | |||
2015-09-15 | Ability to keep collisionshapes and collisionpolygons when running the game. | reduz | |
Works for 2D and 3D These are still just helpers in case you want to animate them or access them directly. Modifying the real shapes is still done via CollisionObject and CollisionObject2D APIs But an API was added so you can query which shapes from CollisionObject correspond to which CollisionShape. Have Fun! | |||
2015-09-10 | HTML5 exporter Improvements | Juan Linietsky | |
-Better template handling -Voice support -Stream support | |||
2015-09-03 | merged some stuff for okam | Juan Linietsky | |
2015-08-28 | Properly free enemies after death in 3d platformer demo. | Eric R. Monson | |
Previously, they stuck around as invisible physics objects. This fix is much cleaner than my previous attempts, as it uses the ability to call a function from an animation as is done in the 2d platformer demo. | |||
2015-08-02 | Live edit WORK IN PROGRESS | Juan 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-24 | Made RegEx API similar to old version | Zher Huei Lee | |
2015-07-24 | Added a live-edit RegEx tester to the demos | Zher Huei Lee | |
2015-06-27 | more code completion improvements | Juan Linietsky | |
-calltip dissapears with more types of keypresses or when pressing ')' -properly looks into autoloaded scripts or nodes with another script for script functions/variables/etc. | |||
2015-06-24 | added ability to define signals in script | Juan Linietsky | |
closes #2175 | |||
2015-06-22 | Merge pull request #2080 from bojidar-bg/patch-1 | Juan Linietsky | |
Fix to #2079 | |||
2015-06-22 | Multiple scene editing *POTENTIALLY UNSTABLE* | Juan Linietsky | |
-ability to edit multiple scenes at the same time -resource internal IDs are now persistent, this makes multiple scene editing possible but maaaaay result in file corruption bugs (tested and could not find anything but possibility exists because core code changed, report immediately if you find this). -properly save settings, layout, etc when edited -script editing is independent from scene editing now -show a yellow box when a script belongs to the scene | |||
2015-06-13 | Delete .fscache from fog_of_war demo, closes #2079. | Bojidar Marinov | |
2015-06-13 | Resolved a merge conflict. | Bojidar Marinov | |
2015-06-11 | added icon | Juan Linietsky | |
2015-06-11 | new space shooter demo | Juan Linietsky | |
ortho camera sort fix, closes #2063 | |||
2015-06-06 | Merge branch 'master' of https://github.com/okamstudio/godot | Juan Linietsky | |
Conflicts: demos/2d/motion/engine.cfg | |||
2015-06-01 | small fixes | Juan Linietsky | |
2015-05-27 | -fix bug in animation editor | Juan Linietsky | |
-fix crash bug in physics motion, closes #1993 | |||
2015-05-26 | oops, previous commit was not working | Juan Linietsky | |
it is working now | |||
2015-05-26 | ability to run 2D physics in a thread | Juan Linietsky | |
also, 2D physics is now thread safe too. see physics_2d/thread_model | |||
2015-05-20 | Add input mapping GUI demo | Rémi Verschelde | |
2015-05-19 | more fixes | Juan Linietsky | |
-only refuse to load an older file if version major is different, fixes #1944 -fix drive letter default value, fixes #1939 | |||
2015-05-17 | added a built-in scene changer API, closes #1928 | Juan Linietsky | |
2015-05-16 | Merge branch 'master' of https://github.com/okamstudio/godot | Juan Linietsky | |
2015-05-16 | -small motion demo, to better troubleshoot | Juan Linietsky | |
2015-05-16 | Merge pull request #1881 from NateWardawg/master | Juan Linietsky | |
Removed redundant code in the kinematic 3D demo. | |||
2015-05-12 | -Added lookat/get_angle_to functions in 2D, and a demo, closes #1843 | Juan Linietsky | |
-Added get_viewport().get_mouse_pos() to replace Input.get_mouse_pos(), closes #1838 | |||
2015-05-12 | -Fixed bug in translation remaps, also added proper demo, maybe fixes #1729 | Juan Linietsky | |
2015-05-11 | Translation Demo | Juan Linietsky | |
2015-05-11 | fixs particles on 3d platformer demo, closes #1588 | Juan Linietsky | |
2015-05-11 | -Updated isometric 2d demo to work using the new isometric support, fixes #1849 | Juan Linietsky | |
2015-05-10 | Removed redundant code in the kinematic 3D demo. | Nathan Warden | |
2015-05-10 | -fixed some glitches in isometric light demo, closes #1858 | Juan Linietsky | |
2015-05-10 | Merge pull request #1875 from Zamaroht/patch-1 | Juan Linietsky | |
Delete unused variable | |||
2015-05-10 | Remove focus from restart button, fixes #1850 | Nicolas Laurito | |
Fixes a problem where the restart button would keep focus after being pressed, making the tetris' pieces impossible to rotate without activating the button again. | |||
2015-05-09 | Deleted unused variable | Nicolas Laurito | |
Deleted the var GRAVITY because it is unused. The gravity is used at line 237, but it's gotten from the Physics2DDirectBodyState parameter. | |||
2015-05-09 | particles in navmesh demo are nice again | Juan Linietsky | |
2015-05-07 | Merge pull request #1852 from SuperUserNameMan/fixes_platformer_3d_particles | Juan Linietsky | |
fixes_3d_platformer_demo_missing_particles_textures | |||
2015-05-07 | Merge pull request #1851 from SuperUserNameMan/fixes_3d_shaders_materials_demo | Juan Linietsky | |
fixes_demo3d_shaders_materials_missing_light | |||
2015-05-07 | Merge pull request #1846 from hurikhan/pr_wm_demo_input_fix | Juan Linietsky | |
window_management demo -- input fix | |||
2015-05-07 | add_missing_textures_to_particles | yg2f | |
2015-05-07 | fixes_demo3d_shaders_materials_missing_light | yg2f | |
add the missing animated light to the demo 3d "shaders materials" | |||
2015-05-06 | window_management input fix | hurikhan | |
2015-05-06 | Delete line without functionality | Nicolas Laurito | |
2015-05-04 | -More strict argument type-checking, will make many bugs visible, fixes #1809 | Juan Linietsky | |
-added NOTIFICATION_INSTANCED |