Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-22 | Fix expression node crashes | Chaosus | |
2019-06-21 | Curve: Prevent forcing 1.0 min value to 0.99 | Rémi Verschelde | |
The setters are called when the property is first initialized, and before that its default min and max are 0.0 and 1.0 respectively. If you configured min_value to 1.0 and max_value to e.g. 3.0, since the min_value setter can be called before that of max_value (which thus still defaults to 1.0), the min will be set to 0.99. Same conflict could happen with a configured max_value of 0 if its setter is called before that of a valid, negative min value. | |||
2019-06-21 | Particles: Properly initialize angular velocity parameter | Rémi Verschelde | |
Right now it would take garbage values when loading scenes, which could end up written to the scene file. | |||
2019-06-21 | Fix some editor crashes | qarmin | |
2019-06-20 | Merge pull request #29283 from qarmin/fix_some_always_same_values | Rémi Verschelde | |
Remove always true/false values | |||
2019-06-20 | Fix always true/false values | qarmin | |
2019-06-20 | Merge pull request #26205 from Calinou/spatialmaterial-use-packed-channels | Rémi Verschelde | |
Tweak SpatialMaterial's default metallic and roughness texture channels | |||
2019-06-19 | Made use of semicolons more consitent, fixed formatting | JohnJLight | |
2019-06-19 | Merge pull request #29878 from Dentrax/fixes | Rémi Verschelde | |
Added ERR_FAIL checks for `Animation::track_set_key_value` and `AnimationNodeStateMachine::remove_node` | |||
2019-06-19 | added forgotten err_fail_index check | Furkan Türkal | |
2019-06-18 | Unexpose subclasses of ResourceFormatLoader and -Saver | Rémi Verschelde | |
ResourceFormatLoader and ResourceFormatSaver are meant to be overridden to add support for different formats in ResourceLoader and ResourceSaver. Those should be exposed as they can be overridden in plugins. On the other hand, all predefined subclasses of those two base classes are only meant to register support for new file and resource types, but should not and cannot be used directly from script, so they should not be exposed. Also unexposed ResourceImporterOGGVorbis (and thus its base class ResourceImporter) which are editor-only. | |||
2019-06-17 | Add script to fix style issues and copyright headers | Rémi Verschelde | |
This is only meant to check the validity of the whole codebase every now and then, or to apply clang-format config changes when relevant. | |||
2019-06-16 | Tweak some editor property hints to be more flexible and consistent | Hugo Locurcio | |
This partially addresses #19242. | |||
2019-06-15 | Adding a new Camera Server implementation to Godot. | BastiaanOlij | |
This is a new singleton where camera sources such as webcams or cameras on a mobile phone can register themselves with the Server. Other parts of Godot can interact with this to obtain images from the camera as textures. This work includes additions to the Visual Server to use this functionality to present the camera image in the background. This is specifically targetted at AR applications. | |||
2019-06-14 | Merge pull request #29647 from YeldhamDev/file_dialog_hidden_toggle | Rémi Verschelde | |
Add toggle for hidden file visibility in FileDialog | |||
2019-06-11 | Fix error macro calls not ending with semicolon | Rémi Verschelde | |
It's not necessary, but the vast majority of calls of error macros do have an ending semicolon, so it's best to be consistent. Most WARN_DEPRECATED calls did *not* have a semicolon, but there's no reason for them to be treated differently. | |||
2019-06-10 | Add toggle for hidden file visibility in FileDialog | Michael Alexsander Silva Dias | |
2019-06-04 | Merge pull request #29469 from bojidar-bg/29446-graphnode-seperation | Rémi Verschelde | |
Fix GraphNode not adding separation after the first node | |||
2019-06-04 | Fix GraphNode not adding seperation after the first node | Bojidar Marinov | |
Fixes #29446 | |||
2019-06-03 | Merge pull request #29432 from bojidar-bg/29401-tscn-serialization | Rémi Verschelde | |
Escape node names when saving to .tscn | |||
2019-06-03 | Escape node names when saving to .tscn | Bojidar Marinov | |
Fixes #29401 | |||
2019-06-03 | Merge pull request #25522 from aqnuep/MeshLibrary_improvements | Rémi Verschelde | |
MeshLibrary export improvements | |||
2019-06-03 | Merge pull request #29422 from akien-mga/particlesmaterial-missing-enum-value | Rémi Verschelde | |
Bind missing FLAG_DISABLE_Z enum value in ParticlesMaterial | |||
2019-06-03 | Add HeightMapShape mesh in CollisionShape gizmo | JFonS | |
2019-06-03 | Bind missing FLAG_DISABLE_Z enum value in ParticlesMaterial | Rémi Verschelde | |
Fixes #29419. | |||
2019-06-01 | Merge pull request #24560 from guilhermefelipecgs/fix_24549 | Rémi Verschelde | |
Add EDITMODE_PRIORITY for ATLAS_TILE | |||
2019-05-31 | Add track_set_key_time() to Animation | Tomasz Chabora | |
2019-05-30 | Merge pull request #29188 from Calinou/improve-ssao-performance-quality | Rémi Verschelde | |
Improve SSAO performance and quality | |||
2019-05-29 | Merge pull request #25012 from avencherus/prevent-duplicate-keyframes | Rémi Verschelde | |
Do precision comparison to prevent the creation of keyframes with a time that already exists | |||
2019-05-28 | Merge pull request #26355 from fire/expose_surface_tool | Rémi Verschelde | |
Expose more surface tools and add create_from_blend_shape. | |||
2019-05-28 | Merge pull request #26978 from qarmin/fix_recursive_bitmapfont_crash | Rémi Verschelde | |
Fix crash when trying to set as Bitmap Font fallback one of his parent | |||
2019-05-28 | Merge pull request #28581 from Lisapple/patch-1 | Rémi Verschelde | |
Fixing Curve2D/3D baked interpolated values | |||
2019-05-27 | Make animation editor change tracks positions instead of swapping them | Michael Alexsander Silva Dias | |
2019-05-27 | Merge pull request #29228 from neikeq/issue-29117 | Rémi Verschelde | |
Fix GetTypeInfo error due to missing include | |||
2019-05-27 | Fix GetTypeInfo error due to missing include | Ignacio Etcheverry | |
2019-05-26 | Improve SSAO performance and quality | Hugo Locurcio | |
This decreases the number of samples significantly, leading to a notable performance increase with only a very slight loss in visual quality. This also tweaks the default SSAO settings to use 3×3 blurring, which makes noise patterns much less visible. | |||
2019-05-25 | fix radiance map settings | clayjohn | |
2019-05-23 | Merge pull request #29031 from BastiaanOlij/alpha_shadow | Rémi Verschelde | |
Implement shadow to opacity | |||
2019-05-21 | Fix expression node parsing when input_port + \0 is occured | Chaosus | |
2019-05-21 | Fix few bugs in expression node | Chaosus | |
2019-05-21 | Merge pull request #28838 from Chaosus/vs_exp | Rémi Verschelde | |
Expression node for visual shaders | |||
2019-05-21 | Implement shadow to opacity | Bastiaan Olij | |
2019-05-21 | Expression node for visual shaders | Chaosus | |
2019-05-20 | Merge pull request #28218 from KoBeWi/b00km4rk5 | Rémi Verschelde | |
Add bookmarks for easier code navigation | |||
2019-05-20 | Style: Fix issues with clang-format 8.0 | Rémi Verschelde | |
2019-05-19 | Merge pull request #28997 from akien-mga/codespell | Rémi Verschelde | |
Fix typos with codespell | |||
2019-05-19 | Fix typos with codespell | Rémi Verschelde | |
Using codespell 1.15.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear doubleclick leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ``` | |||
2019-05-19 | Added Fresnel and OneMinus to visual shaders | Chaosus | |
2019-05-17 | Merge pull request #28366 from iwek7/feature/issue28355/showSpacesInEditor | Max Hilbrunner | |
Add feature to show spaces in code editor | |||
2019-05-13 | Merge pull request #28761 from aqnuep/texture_resource_reload_fix | Rémi Verschelde | |
Fix texture resource reload bug |