summaryrefslogtreecommitdiffstats
path: root/scene/3d
Commit message (Collapse)AuthorAgeFilesLines
* Warn about plane shape usage, closes #26503Juan Linietsky2019-03-041-0/+4
|
* Merge pull request #26511 from clayjohn/giprobe_gles2_warningRémi Verschelde2019-03-042-0/+12
|\ | | | | Add warning to GIProbe when using GLES2
| * add warning to GIProbe when using GLES2clayjohn2019-03-032-0/+12
| |
* | Fixed missing exclude raycast shapes arguments in snap, closes #25230Juan Linietsky2019-03-032-8/+8
| |
* | Skeletons can now choose between using local or world coords for processing, ↵Juan Linietsky2019-03-032-28/+22
| | | | | | | | fixes #26468
* | Merge pull request #26514 from clayjohn/hide_properties_gles2Rémi Verschelde2019-03-032-0/+8
|\ \ | | | | | | Hide hdr and shadow_contact in gles2
| * | hide hdr and shadow_contact in gles2clayjohn2019-03-022-0/+8
| |/
* / Make query checks less agressive, fixes #24694Juan Linietsky2019-03-021-1/+1
|/
* Fix -Wsign-compare warnings.marxin2019-02-271-4/+4
| | | | | I decided to modify code in a defensive way. Ideally functions like size() or length() should return an unsigned type.
* Remove setting that caused is_inside_tree() errors on doppler tracking enabled.Juan Linietsky2019-02-262-2/+6
|
* Remove copy and use instance material override in gizmos, fixes #23783Juan Linietsky2019-02-231-0/+3
|
* Ensure move and slide snap respects stop on slope, fixes #26180Juan Linietsky2019-02-231-0/+5
|
* Change MAX for MIN, fixes #26170Juan Linietsky2019-02-221-1/+1
|
* Check that area is inside tree besides checking that queries are flushed, ↵Juan Linietsky2019-02-221-1/+1
| | | | fixes #26148
* Fix all -Wtype-limits warnings.marxin2019-02-211-1/+1
|
* Add -Wshadow=local to warnings and fix reported issues.marxin2019-02-205-29/+28
| | | | Fixes #25316.
* Merge pull request #26025 from clayjohn/particles_lifetimeRémi Verschelde2019-02-182-2/+2
|\ | | | | Allowing setting particles lifetime greater than 600
| * allowing setting particles lifetime greater than 600clayjohn2019-02-182-2/+2
| |
* | Fix AudioStreams::stop possibly causing a small noiseMarcelo Fernandez2019-02-172-16/+24
| |
* | Change snapping to only happen when the floor normal remains as floor, fixes ↵Juan Linietsky2019-02-161-6/+14
| | | | | | | | #22312
* | Add a minimum treshold for acquiring rest contacts to avoid numerical ↵Juan Linietsky2019-02-161-0/+1
| | | | | | | | precision issues. Fixes #25074
* | Make sure stop on slope can have a tiny bit of precision edge.Juan Linietsky2019-02-161-1/+1
| |
* | Fix typos with codespellRémi Verschelde2019-02-132-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using codespell 1.14.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang doubleclick lod nd numer que te unselect EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
* | Scene: Ensure classes match their header filenameRémi Verschelde2019-02-124-5/+5
|/ | | | | | | | | | | | | | | | | | Also drop some unused files. Renamed: - `scene/2d/navigation2d.h` -> `navigation_2d.h` - `scene/2d/screen_button.h` -> `touch_screen_button.h` - `scene/3d/scenario_fx.h` -> `world_environment.h` - `scene/audio/audio_player.h` -> `audio_stream_player.h` - `scene/resources/bit_mask.h` -> `bit_map.h` - `scene/resources/color_ramp.h` -> `gradient.h` - `scene/resources/shape_line_2d.h` -> `line_shape_2d.h` - `scene/resources/scene_format_text.h` -> `resource_format_text.h` - `scene/resources/sky_box.h` -> `sky.h` Dropped: - `scene/resources/bounds.h`
* Merge pull request #25602 from mcccclean/dont-ignore-listener-nodesRémi Verschelde2019-02-121-14/+28
|\ | | | | Fix 3D Listener nodes not being used
| * Prefer a viewport's listener over a camera where availableTom McLean2019-02-061-14/+28
| | | | | | | | Fix clang formatting issue
* | Warn when using GPU particles with GLES2Rémi Verschelde2019-02-091-0/+6
| | | | | | | | Closes #25733.
* | Add frame support for Sprite3D with region enabledMichael Alexsander Silva Dias2019-02-041-20/+14
|/
* binding for get_frustum() of camera classYusuf2019-01-281-0/+1
|
* Fix PhysicsBody ignoring set_friction/bounce with default valueRémi Verschelde2019-01-241-4/+4
| | | | | | | | | The intent was to avoid creating a physics override to set a default value that doesn't make a difference, but as #22406 shows it can be necessary to set the default value *back* after an override was created to set a non-default value. Fixes #22406.
* Fixed Bone Transform OrderGrant Clarke2019-01-181-1/+1
| | | | | The bone index being passed to the visual server is not using the process order and results in incorrect skin deformation if the calculated process order is different from the unordered bones Vector. Incidentally, this never showed when I exported rigged characters from blender using the Better Collada exporter. This bug only materialised when experimenting with the glTF pipeline from Maya.
* Fix uninitialized memory error.Juan Linietsky2019-01-171-0/+1
|
* Avoid crashing GIProbe bake with broken UV data, closes #25028Juan Linietsky2019-01-171-2/+2
|
* Merge pull request #25038 from GlaDos28/masterRémi Verschelde2019-01-171-3/+4
|\ | | | | fixed AudioStreamPlayer3D::_get_attenuation_db epsilon value
| * fixed AudioStreamPlayer3D::_get_attenuation_db epsilon valueEvgeny Savelyev2019-01-171-3/+4
| |
* | Merge pull request #24993 from YeldhamDev/cppcheck_warns_scene_fixRémi Verschelde2019-01-172-9/+3
|\ \ | | | | | | Appease some CppCheck warns for files in the "scene" directory
| * | Appease some CppCheck warns for files in the "scene" directoryMichael Alexsander Silva Dias2019-01-162-9/+3
| |/
* / Rename OrientedPathFollow to PathFollowOrientedDanilo Villa (Davi)2019-01-162-288/+60
|/
* Allow offset and unit_offset to be set higher than one loopTimo Schwarzer2019-01-031-2/+2
| | | | Fixes #24745
* Update copyright statements to 2019Rémi Verschelde2019-01-0182-164/+164
| | | | Happy new year to the wonderful Godot community!
* Merge pull request #24506 from JFonS/expose_gizmosRémi Verschelde2018-12-302-0/+5
|\ | | | | Expose the new gizmo plugin system to scripting
| * Expose the new gizmo plugin system to scriptingJFonS2018-12-212-0/+5
| |
* | Merge pull request #24161 from aroncds/masterRémi Verschelde2018-12-141-17/+19
|\ \ | | | | | | Fix properties update in remote transform
| * | Fix properties update in remote transformAron Castro2018-12-041-17/+19
| | |
* | | i18n: Sync translation template with current sourceRémi Verschelde2018-12-131-1/+1
| | | | | | | | | | | | Also French translation update and misc fixes to source strings.
* | | Reverse bitangent on everythings to ensure default normal map behavriour is ↵Bastiaan Olij2018-12-081-2/+2
| | | | | | | | | | | | consistent
* | | #24131: fix for PathFollow offset slider overlapping with the inspectorGleb Mineev2018-12-041-1/+1
|/ /
* | Merge pull request #24051 from Omicron666/patch-1Rémi Verschelde2018-12-031-1/+1
|\ \ | | | | | | Fixes typo in source string sent to translation.
| * | Fixes typo in source string sent to translation.Omicron2018-11-291-1/+1
| | | | | | | | | no mesh has ~~not~~ been assigned
* | | remove_unused_get_frustumpaul gruenbacher2018-12-021-2/+0
| | |