Age | Commit message (Collapse) | Author |
|
Also took the opportunity to "touch" each demo's engine.cfg in reverse alphabetical order to get the listed in natural order in the project manager.
|
|
|
|
The scripts were streamlined using more or less the following conventions:
- space after a comma in lists of arguments
- spaces around weak operators (+, -), no spaces around strong operators (*, /)
- spaces around comparison operators and compound assignment operators
- space after a comment start (#)
- removed trailing spaces or tabs, apart from those that delimit the function indentation level (those could be removed too but since they are added automatically by the editor when typing code, keeping them for now)
- function blocks separate by two newlines
- comment sentences start with an upper-case letter
|
|
|
|
Godot does not seem to like 8-bit colormaps.
Fixes #2874.
|
|
|
|
|
|
Added project icon to some demos
|
|
|
|
|
|
Disable filters for tilemap in 2D Platformer demo
|
|
-Ability to edit and keep changes of instanced scenes and sub-scenes
-Ability to inherit from other scenes
|
|
Fixes #2452
|
|
-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
|
|
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!
|
|
-Better template handling
-Voice support
-Stream support
|
|
|
|
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.
|
|
-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.
|
|
closes #2175
|
|
Fix to #2079
|
|
-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
|
|
|
|
|
|
|
|
ortho camera sort fix, closes #2063
|
|
Conflicts:
demos/2d/motion/engine.cfg
|
|
|
|
-fix crash bug in physics motion, closes #1993
|
|
it is working now
|
|
also, 2D physics is now thread safe too.
see physics_2d/thread_model
|
|
-only refuse to load an older file if version major is different, fixes
#1944
-fix drive letter default value, fixes #1939
|
|
|
|
-Added get_viewport().get_mouse_pos() to replace Input.get_mouse_pos(), closes #1838
|
|
|
|
|
|
Delete unused variable
|
|
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.
|
|
Deleted the var GRAVITY because it is unused. The gravity is used at line 237, but it's gotten from the Physics2DDirectBodyState parameter.
|
|
|
|
-added NOTIFICATION_INSTANCED
|
|
|
|
|
|
Updating demo engine.cfgs where name is missing
|
|
|
|
|
|
fixes #1697
|
|
|
|
|
|
-KinematicBody2D::move now properly recognizes collision exceptions and masks, fixes #1649
-Removed object type masking for KinematicBody2D
-Added a test_motion() function to RigidBody2D, allowing simlar behavior to KinematicBody2D::move there.
|