aboutsummaryrefslogtreecommitdiff
path: root/scene (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | | | | | | | | | | | | | Fix Node2D::global_scale's PropertyInfo typeRémi Verschelde2018-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Was missed in #18391.
* | | | | | | | | | | | | | | | | | | | | Merge pull request #18348 from rfht/masterRémi Verschelde2018-05-011-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix clang6 assignment error
| * | | | | | | | | | | | | | | | | | | | | fix clang6 assignment errorthfrwn2018-04-211-2/+2
| | |/ / / / / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Merge pull request #18382 from groud/fix_gridcontainer_children_visibilityRémi Verschelde2018-05-011-8/+15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix GridContainer's children visibility breaking the layout
| * | | | | | | | | | | | | | | | | | | | | Fix GridContainer's children visibility breaking the layoutgroud2018-04-231-8/+15
| | |_|_|_|_|_|/ / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Merge pull request #18321 from Crazy-P/Fixes-logically-dead-codeRémi Verschelde2018-05-012-8/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes logically dead code (Coverity)
| * | | | | | | | | | | | | | | | | | | | | Fixes logically dead code (Coverity)Crazy-P2018-04-212-8/+2
| | |/ / / / / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes reported logically dead codes by Coverity * image.cpp: Doesn't really need any modification. But to remove the bug report then we have to move the MAX call away from the for loop statement. * rasterizer_gles3.cpp: Removes unnecessary elif condition since it is checked earlier in the function * collada.cpp: If stamement never reached due to macro ERR_CONTINUE does the same. * navigation_mesh.cpp: Variables should always be null - however, also checked for the very same condition in their function call. Leaving this for review (whether the function call is necessary or not) * path_editor_plugin.cpp: If cancel is true, then it should restore the edited value to the original provided. http://docs.godotengine.org/en/3.0/classes/class_editorspatialgizmo.html#class-editorspatialgizmo-commit-handle * spatial_editor_gizmos.cpp: the very condition of i >= 3 is predetermined in the if case right before it. Thus case 1 is always '1' and case 2 is always '-1' * grid_map_editor.cpp: Same as above in spatial_editor_gizmos.cpp * voxel_light_baker.cpp: Same as above in spatial_editor_gizmos.cpp * visual_server.cpp: Same as above in spatial_editor_gizmos.cpp * visual_script_expression.cpp: char '-' is already true in the switch case mechanism. Thus it can never reach to default case. * particles.cpp: Case 'PARAM_MAX' is unreachable due to index checking right before the switch execution. * shader_language.cpp: Invalid index is handled in switch default case. `type < TYPE_FLOAT && type > TYPE_VEC4` -> `(type < TYPE_FLOAT || type > TYPE_VEC4`) Fixes the "always false problem" in TODO comment.
* | | | | | | | | | | | | | | | | | | | | Merge pull request #18370 from KidRigger/masterMax Hilbrunner2018-04-301-0/+6
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds support for CMD+Left and CMD+Right on MacOS
| * | | | | | | | | | | | | | | | | | | | | Adds support for CMD+Left and CMD+Right on MacOSAnish2018-04-231-0/+6
| | |/ / / / / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CMD+Left and CMD+Right are hotkeys used on MacOS for moving cursor to start and end of the text, respectively. They are now supported, alongside ALT+key. Fixes: #17631
* | | | | | | | | | | | | | | | | | | | | Merge pull request #18489 from Calinou/tweak-property-hint-rangesMax Hilbrunner2018-04-302-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tweak the property hint ranges of caret blink and line length guideline
| * | | | | | | | | | | | | | | | | | | | | Tweak the property hint ranges of caret blink and line length guidelineHugo Locurcio2018-04-282-2/+2
| | |_|_|_|_|/ / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows for more precise adjustments.
* / | | | | | | | | | | | | | | | | | | | Make the LineEdit "secret" character customizableHugo Locurcio2018-04-302-6/+31
|/ / / / / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | | | | CSG Support for Godot!Juan Linietsky2018-04-275-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -Missing Icons -Missing freezing option (for baking light and faster load) -Missing a way to export from Godot (GLTF2?) -Probably buggy (may freeze editor, can be worked around easily, but let me know if this happens so it's easier to catch bugs) Happy testing!
* | | | | | | | | | | | | | | | | | | | Fixed stylebox crashsersoong2018-04-271-1/+5
| |_|_|_|/ / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | Fix Node2D::global_position to have Vector2 typeRuslan Mustakov2018-04-241-1/+1
|/ / / / / / / / / / / / / / / / / /
* / / / / / / / / / / / / / / / / / Change ".." punctuation for "..." in editor strings (#16507)Hugo Locurcio2018-04-221-1/+1
|/ / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | Fixed context menu TTR bugssersoong2018-04-192-13/+13
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #18172 from Chaosus/fix_notificationRémi Verschelde2018-04-181-1/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevent visibility notification from being called twice in object creation
| * | | | | | | | | | | | | | | | | Prevent visibility notification been called twice in object creationChaosus2018-04-131-1/+2
| | |/ / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #18161 from flashyincceo/fixing-bug-#18128Rémi Verschelde2018-04-182-0/+11
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add popup_closed signal for ColorPickerButton
| * | | | | | | | | | | | | | | | | Add popup_closed signal for ColorPickerButtonPeter Folkins2018-04-132-0/+11
| |/ / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #17688
* | | | | | | | | | | | | | | | | Merge pull request #18204 from tagcup/quat_scaleRémi Verschelde2018-04-183-8/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Avoid converting Quat to Euler angles when not necessary.
| * | | | | | | | | | | | | | | | | Avoid converting Quat to Euler angles when not necessary.tagcup2018-04-143-8/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also ensure that get_scale doesn't arbitrarlity change the signs of scales, ensuring that the combination of get_rotation and get_scale gives the correct basis. Added various missing functions and constructors. Should close #17968.
* | | | | | | | | | | | | | | | | | Merge pull request #18230 from volzhs/fix-image-errorRémi Verschelde2018-04-181-0/+24
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix index out of size error on Image
| * | | | | | | | | | | | | | | | | | Fix error spam with Sprite has compressed texturevolzhs2018-04-161-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix #18177
| * | | | | | | | | | | | | | | | | | Fix index out of size error on Imagevolzhs2018-04-161-0/+21
| |/ / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix #18229
* | | / / / / / / / / / / / / / / / Ability to change path color with self modulatevolzhs2018-04-171-1/+2
| |_|/ / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix #18164
* | | | | | | | | | | | | | | | | ItemList selection: Check against item countShyRed2018-04-141-1/+1
|/ / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ItemList needs to check against the number of items available when the user moves the selection via "ui_right" action.
* | | | | | | | | | | | | | | | Merge pull request #17502 from groud/2Deditor_rectJuan Linietsky2018-04-1332-47/+152
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | Remove the rect surrounding 2D nodes in 2D editor when it's not pertinent
| * | | | | | | | | | | | | | | Remove the selection rect for nodes that do not require itGilles Roudiere2018-04-0332-47/+152
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Use internal physics processing for Nodes' internal logicRémi Verschelde2018-04-117-36/+36
| |_|/ / / / / / / / / / / / / |/| | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Update classref and docs, fix missing parameters' namePoommetee Ketson2018-04-111-1/+1
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Fixed color region calculation for the first linePaulb232018-04-101-0/+3
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Implement Input.set_default_cursor_shape to change the default shapeGuilherme Felipe2018-04-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #18043
* | | | | | | | | | | | | | | Merge pull request #18095 from robfram/fix-lineedit-17113Rémi Verschelde2018-04-102-4/+17
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | LineEdit placeholder alignment, content margins, and overflow bugs
| * | | | | | | | | | | | | | | LineEdit placeholder alignment, content margins, and overflow bugsrobfram2018-04-092-4/+17
| | |_|_|_|_|_|_|_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | LineEdit doesn't correctly uses style margins nor use placeholders width correctly, causing multiple rendering bugs.
* | | | | | | | | | | | | | | Merge pull request #18091 from RandomShaper/icon-radio-itemRémi Verschelde2018-04-103-1/+9
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for radio-looking items with icon
| * | | | | | | | | | | | | | | Add support for radio-looking items with iconPedro J. Estébanez2018-04-093-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Letting users of `PopupMenu` use them. `OptionButton` was one of those interested and is updated in this commit. Fixes #18063.
* | | | | | | | | | | | | | | | Merge pull request #17081 from endragor/no-press-when-scrollRémi Verschelde2018-04-105-24/+60
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make Button not emit press when container is scrolled
| * | | | | | | | | | | | | | | | Make BaseButton not emit press when container is scrolledRuslan Mustakov2018-04-095-24/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the problem described in #13996 in a proper way. This also adds "deadzone" property to ScrollContainer. It can be used on mobile, where taps are not as precise as mouse clicks. Player could slightly move their finger when tapping, in which case we still want the button to be pressed rather than the container to be scrolled.
* | | | | | | | | | | | | | | | | Merge pull request #17080 from simedis/pretty_print_treeRémi Verschelde2018-04-102-4/+20
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Made Node.print_tree() print prettily
| * | | | | | | | | | | | | | | | | Made print_tree_pretty() function which displays scene tree graphicallyGeoffrey2018-04-092-4/+20
| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Merge pull request #18080 from Alexander-Alekseev/fix_rigidbody_config_warningRémi Verschelde2018-04-091-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix of RigidBody's configuration warning for Z axis
| * | | | | | | | | | | | | | | | | | Fix RigidBody's configuration warning for Z axisAlexander Alekseev2018-04-091-1/+1
| |/ / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | | Merge pull request #16473 from ianb96/move_tabRémi Verschelde2018-04-094-4/+294
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | Drag to Rearrange Editor Docks
| * | | | | | | | | | | | | | | | | Drag to rearrange Tabs and TabContainerianb962018-04-084-4/+294
| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Merge pull request #18040 from Paulb23/color_region_cacheRémi Verschelde2018-04-092-37/+54
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | Fixed colour regions and added local colour region cache
| * | | | | | | | | | | | | | | | | Fixed color regions and added local color region cachePaulb232018-04-072-37/+54
| | |_|_|_|_|/ / / / / / / / / / / | |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #18072 from AlexHolly/masterGeorge Marques2018-04-082-0/+7
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | expose Tileset TileMode to GDScript
| * | | | | | | | | | | | | | | | expose Tileset TileMode to GDScriptAlexander Holland2018-04-082-0/+7
| | | | | | | | | | | | | | | | |