From 79a2e4c1ab97a60c851b0a9442485f85e67bd45a Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Mon, 13 Jul 2020 03:34:34 -0400 Subject: [PATCH 1/4] Add static formatting checks for GitHub Actions --- .github/workflows/static_checks.yml | 31 ++++++++++ misc/scripts/black_format.sh | 35 +++++++++++ misc/scripts/clang_format.sh | 58 ++++++++++++++++++ misc/scripts/copyright_headers.py | 95 +++++++++++++++++++++++++++++ misc/scripts/file_format.sh | 59 ++++++++++++++++++ 5 files changed, 278 insertions(+) create mode 100644 .github/workflows/static_checks.yml create mode 100755 misc/scripts/black_format.sh create mode 100755 misc/scripts/clang_format.sh create mode 100755 misc/scripts/copyright_headers.py create mode 100755 misc/scripts/file_format.sh diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml new file mode 100644 index 00000000000..bcba4c36d9e --- /dev/null +++ b/.github/workflows/static_checks.yml @@ -0,0 +1,31 @@ +name: Static checks +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-20.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Install dependencies + run: | + sudo apt-get update -qq + sudo apt-get install -qq dos2unix recode clang-format + pip3 install --user black pygments + + - name: File formatting checks (file_format.sh) + run: | + bash ./misc/scripts/file_format.sh + + - name: Style checks via clang-format (clang_format.sh) + run: | + bash ./misc/scripts/clang_format.sh + + - name: Python style checks via black (black_format.sh) + run: | + bash ./misc/scripts/black_format.sh + + - name: Documentation checks + run: | + doc/tools/makerst.py --dry-run doc/classes modules diff --git a/misc/scripts/black_format.sh b/misc/scripts/black_format.sh new file mode 100755 index 00000000000..04dfe32f606 --- /dev/null +++ b/misc/scripts/black_format.sh @@ -0,0 +1,35 @@ +#!/usr/bin/env bash + +# This script runs black on all Python files in the repo. + +set -uo pipefail + +# Apply black. +echo -e "Formatting Python files..." +PY_FILES=$(find \( -path "./.git" \ + -o -path "./thirdparty" \ + \) -prune \ + -o \( -name "SConstruct" \ + -o -name "SCsub" \ + -o -name "*.py" \ + \) -print) +black -l 120 $PY_FILES + +git diff > patch.patch +FILESIZE="$(stat -c%s patch.patch)" +MAXSIZE=5 + +# If no patch has been generated all is OK, clean up, and exit. +if (( FILESIZE < MAXSIZE )); then + printf "Files in this commit comply with the black style rules.\n" + rm -f patch.patch + exit 0 +fi + +# A patch has been created, notify the user, clean up, and exit. +printf "\n*** The following differences were found between the code " +printf "and the formatting rules:\n\n" +cat patch.patch +printf "\n*** Aborting, please fix your commit(s) with 'git commit --amend' or 'git rebase -i '\n" +rm -f patch.patch +exit 1 diff --git a/misc/scripts/clang_format.sh b/misc/scripts/clang_format.sh new file mode 100755 index 00000000000..5131f7fe333 --- /dev/null +++ b/misc/scripts/clang_format.sh @@ -0,0 +1,58 @@ +#!/usr/bin/env bash + +# This script runs clang-format and fixes copyright headers on all relevant files in the repo. +# This is the primary script responsible for fixing style violations. + +set -uo pipefail +IFS=$'\n\t' + +CLANG_FORMAT_FILE_EXTS=(".c" ".h" ".cpp" ".hpp" ".cc" ".hh" ".cxx" ".m" ".mm" ".inc" ".java" ".glsl") + +# Loops through all text files tracked by Git. +git grep -zIl '' | +while IFS= read -rd '' f; do + # Exclude some files. + if [[ "$f" == "thirdparty"* ]]; then + continue + elif [[ "$f" == "platform/android/java/lib/src/com/google"* ]]; then + continue + fi + + for extension in ${CLANG_FORMAT_FILE_EXTS[@]}; do + if [[ "$f" == *"$extension" ]]; then + # Run clang-format. + clang-format -i "$f" + # Fix copyright headers, but not all files get them. + if [[ "$f" == *"inc" ]]; then + continue 2 + elif [[ "$f" == *"glsl" ]]; then + continue 2 + elif [[ "$f" == *"theme_data.h" ]]; then + continue 2 + elif [[ "$f" == "platform/android/java/lib/src/org/godotengine/godot/input/InputManager"* ]]; then + continue 2 + fi + python misc/scripts/copyright_headers.py "$f" + continue 2 + fi + done +done + +git diff > patch.patch +FILESIZE="$(stat -c%s patch.patch)" +MAXSIZE=5 + +# If no patch has been generated all is OK, clean up, and exit. +if (( FILESIZE < MAXSIZE )); then + printf "Files in this commit comply with the clang-format style rules.\n" + rm -f patch.patch + exit 0 +fi + +# A patch has been created, notify the user, clean up, and exit. +printf "\n*** The following differences were found between the code " +printf "and the formatting rules:\n\n" +cat patch.patch +printf "\n*** Aborting, please fix your commit(s) with 'git commit --amend' or 'git rebase -i '\n" +rm -f patch.patch +exit 1 diff --git a/misc/scripts/copyright_headers.py b/misc/scripts/copyright_headers.py new file mode 100755 index 00000000000..bf1e0d3f9cc --- /dev/null +++ b/misc/scripts/copyright_headers.py @@ -0,0 +1,95 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import sys + +header = """\ +/*************************************************************************/ +/* $filename */ +/*************************************************************************/ +/* This file is part of: */ +/* GODOT ENGINE */ +/* https://godotengine.org */ +/*************************************************************************/ +/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */ +/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */ +/* */ +/* Permission is hereby granted, free of charge, to any person obtaining */ +/* a copy of this software and associated documentation files (the */ +/* "Software"), to deal in the Software without restriction, including */ +/* without limitation the rights to use, copy, modify, merge, publish, */ +/* distribute, sublicense, and/or sell copies of the Software, and to */ +/* permit persons to whom the Software is furnished to do so, subject to */ +/* the following conditions: */ +/* */ +/* The above copyright notice and this permission notice shall be */ +/* included in all copies or substantial portions of the Software. */ +/* */ +/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ +/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ +/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ +/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ +/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ +/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ +/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +/*************************************************************************/ +""" + +fname = sys.argv[1] + +# Handle replacing $filename with actual filename and keep alignment +fsingle = fname.strip() +if fsingle.find("/") != -1: + fsingle = fsingle[fsingle.rfind("/") + 1 :] +rep_fl = "$filename" +rep_fi = fsingle +len_fl = len(rep_fl) +len_fi = len(rep_fi) +# Pad with spaces to keep alignment +if len_fi < len_fl: + for x in range(len_fl - len_fi): + rep_fi += " " +elif len_fl < len_fi: + for x in range(len_fi - len_fl): + rep_fl += " " +if header.find(rep_fl) != -1: + text = header.replace(rep_fl, rep_fi) +else: + text = header.replace("$filename", fsingle) +text += "\n" + +# We now have the proper header, so we want to ignore the one in the original file +# and potentially empty lines and badly formatted lines, while keeping comments that +# come after the header, and then keep everything non-header unchanged. +# To do so, we skip empty lines that may be at the top in a first pass. +# In a second pass, we skip all consecutive comment lines starting with "/*", +# then we can append the rest (step 2). + +fileread = open(fname.strip(), "r") +line = fileread.readline() +header_done = False + +while line.strip() == "": # Skip empty lines at the top + line = fileread.readline() + +if line.find("/**********") == -1: # Godot header starts this way + # Maybe starting with a non-Godot comment, abort header magic + header_done = True + +while not header_done: # Handle header now + if line.find("/*") != 0: # No more starting with a comment + header_done = True + if line.strip() != "": + text += line + line = fileread.readline() + +while line != "": # Dump everything until EOF + text += line + line = fileread.readline() + +fileread.close() + +# Write +filewrite = open(fname.strip(), "w") +filewrite.write(text) +filewrite.close() diff --git a/misc/scripts/file_format.sh b/misc/scripts/file_format.sh new file mode 100755 index 00000000000..30988e51c67 --- /dev/null +++ b/misc/scripts/file_format.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash + +# This script ensures proper POSIX text file formatting and a few other things. +# This is supplementary to clang-black-format.sh, but should be run before it. + +set -uo pipefail +IFS=$'\n\t' + +# Loops through all text files tracked by Git. +git grep -zIl '' | +while IFS= read -rd '' f; do + # Exclude some types of files. + if [[ "$f" == *"csproj" ]]; then + continue + elif [[ "$f" == *"sln" ]]; then + continue + elif [[ "$f" == *"patch" ]]; then + continue + elif [[ "$f" == *"pot" ]]; then + continue + elif [[ "$f" == *"po" ]]; then + continue + elif [[ "$f" == "thirdparty"* ]]; then + continue + elif [[ "$f" == "platform/android/java/lib/src/com/google"* ]]; then + continue + fi + # Ensures that files are UTF-8 formatted. + recode UTF-8 "$f" 2> /dev/null + # Ensures that files have LF line endings. + dos2unix "$f" 2> /dev/null + # Ensures that files do not contain a BOM. + sed -i '1s/^\xEF\xBB\xBF//' "$f" + # Ensures that files end with newline characters. + tail -c1 < "$f" | read -r _ || echo >> "$f"; + # Remove trailing space characters. + sed -z -i 's/\x20\x0A/\x0A/g' "$f" + # Remove the character sequence "== true" if it has a leading space. + sed -z -i 's/\x20== true//g' "$f" +done + +git diff > patch.patch +FILESIZE="$(stat -c%s patch.patch)" +MAXSIZE=5 + +# If no patch has been generated all is OK, clean up, and exit. +if (( FILESIZE < MAXSIZE )); then + printf "Files in this commit comply with the formatting rules.\n" + rm -f patch.patch + exit 0 +fi + +# A patch has been created, notify the user, clean up, and exit. +printf "\n*** The following differences were found between the code " +printf "and the formatting rules:\n\n" +cat patch.patch +printf "\n*** Aborting, please fix your commit(s) with 'git commit --amend' or 'git rebase -i '\n" +rm -f patch.patch +exit 1 From d8b65461e395c6b1f1a06534017294c0a7fe86d8 Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Mon, 13 Jul 2020 01:09:42 -0400 Subject: [PATCH 2/4] Commit only the SVG files changed by file_format.sh There were a lot of SVG files changed by file_format.sh --- editor/icons/2D.svg | 2 +- editor/icons/3D.svg | 2 +- editor/icons/AABB.svg | 2 +- editor/icons/AcceptDialog.svg | 2 +- editor/icons/ActionCopy.svg | 2 +- editor/icons/ActionCut.svg | 2 +- editor/icons/ActionPaste.svg | 2 +- editor/icons/Add.svg | 2 +- editor/icons/AddAtlasTile.svg | 2 +- editor/icons/AddAutotile.svg | 2 +- editor/icons/AddSingleTile.svg | 2 +- editor/icons/AddSplit.svg | 2 +- editor/icons/Anchor.svg | 2 +- editor/icons/AnimatedSprite2D.svg | 2 +- editor/icons/AnimatedSprite3D.svg | 2 +- editor/icons/AnimatedTexture.svg | 2 +- editor/icons/Animation.svg | 2 +- editor/icons/AnimationFilter.svg | 2 +- editor/icons/AnimationPlayer.svg | 2 +- editor/icons/AnimationTrackGroup.svg | 2 +- editor/icons/AnimationTrackList.svg | 2 +- editor/icons/AnimationTree.svg | 2 +- editor/icons/Area2D.svg | 2 +- editor/icons/Area3D.svg | 2 +- editor/icons/Array.svg | 2 +- editor/icons/ArrayMesh.svg | 2 +- editor/icons/ArrowDown.svg | 2 +- editor/icons/ArrowLeft.svg | 2 +- editor/icons/ArrowRight.svg | 2 +- editor/icons/ArrowUp.svg | 2 +- editor/icons/AtlasTexture.svg | 2 +- editor/icons/AudioBusBypass.svg | 2 +- editor/icons/AudioBusLayout.svg | 2 +- editor/icons/AudioBusMute.svg | 2 +- editor/icons/AudioBusSolo.svg | 2 +- editor/icons/AudioStreamOGGVorbis.svg | 2 +- editor/icons/AudioStreamPlayer.svg | 2 +- editor/icons/AudioStreamPlayer2D.svg | 2 +- editor/icons/AudioStreamPlayer3D.svg | 2 +- editor/icons/AudioStreamSample.svg | 2 +- editor/icons/AutoEnd.svg | 2 +- editor/icons/AutoKey.svg | 2 +- editor/icons/AutoPlay.svg | 2 +- editor/icons/AutoTriangle.svg | 2 +- editor/icons/Back.svg | 2 +- editor/icons/BackBufferCopy.svg | 2 +- editor/icons/Bake.svg | 2 +- editor/icons/BakedLightmap.svg | 2 +- editor/icons/BakedLightmapData.svg | 2 +- editor/icons/Basis.svg | 2 +- editor/icons/BezierHandlesBalanced.svg | 2 +- editor/icons/BezierHandlesFree.svg | 2 +- editor/icons/BezierHandlesMirror.svg | 2 +- editor/icons/BitMap.svg | 2 +- editor/icons/BitmapFont.svg | 2 +- editor/icons/Blend.svg | 2 +- editor/icons/Bone.svg | 2 +- editor/icons/Bone2D.svg | 2 +- editor/icons/BoneAttachment3D.svg | 2 +- editor/icons/BoneTrack.svg | 2 +- editor/icons/BoxShape3D.svg | 2 +- editor/icons/Bucket.svg | 2 +- editor/icons/BusVuEmpty.svg | 2 +- editor/icons/BusVuFrozen.svg | 2 +- editor/icons/BusVuFull.svg | 2 +- editor/icons/Button.svg | 2 +- editor/icons/ButtonGroup.svg | 2 +- editor/icons/CPUParticles2D.svg | 2 +- editor/icons/CPUParticles3D.svg | 2 +- editor/icons/Camera2D.svg | 2 +- editor/icons/Camera3D.svg | 2 +- editor/icons/CameraEffects.svg | 2 +- editor/icons/CameraTexture.svg | 2 +- editor/icons/CanvasItem.svg | 2 +- editor/icons/CanvasItemMaterial.svg | 2 +- editor/icons/CanvasItemShader.svg | 2 +- editor/icons/CanvasItemShaderGraph.svg | 2 +- editor/icons/CanvasLayer.svg | 2 +- editor/icons/CanvasModulate.svg | 2 +- editor/icons/CapsuleMesh.svg | 2 +- editor/icons/CapsuleShape2D.svg | 2 +- editor/icons/CapsuleShape3D.svg | 2 +- editor/icons/CenterContainer.svg | 2 +- editor/icons/CheckBox.svg | 2 +- editor/icons/CheckButton.svg | 2 +- editor/icons/Checkerboard.svg | 2 +- editor/icons/CircleShape2D.svg | 2 +- editor/icons/ClassList.svg | 2 +- editor/icons/Clear.svg | 2 +- editor/icons/ClippedCamera3D.svg | 2 +- editor/icons/Close.svg | 2 +- editor/icons/Collapse.svg | 2 +- editor/icons/CollisionPolygon2D.svg | 2 +- editor/icons/CollisionPolygon3D.svg | 2 +- editor/icons/CollisionShape2D.svg | 2 +- editor/icons/CollisionShape3D.svg | 2 +- editor/icons/Color.svg | 2 +- editor/icons/ColorPick.svg | 2 +- editor/icons/ColorPicker.svg | 2 +- editor/icons/ColorPickerButton.svg | 2 +- editor/icons/ColorRamp.svg | 2 +- editor/icons/ColorRect.svg | 2 +- editor/icons/ColorTrackVu.svg | 2 +- editor/icons/ConcavePolygonShape2D.svg | 2 +- editor/icons/ConcavePolygonShape3D.svg | 2 +- editor/icons/ConeTwistJoint3D.svg | 2 +- editor/icons/ConfirmationDialog.svg | 2 +- editor/icons/Container.svg | 2 +- editor/icons/Control.svg | 2 +- editor/icons/ControlAlignBottomCenter.svg | 2 +- editor/icons/ControlAlignBottomLeft.svg | 2 +- editor/icons/ControlAlignBottomRight.svg | 2 +- editor/icons/ControlAlignBottomWide.svg | 2 +- editor/icons/ControlAlignCenter.svg | 2 +- editor/icons/ControlAlignCenterLeft.svg | 2 +- editor/icons/ControlAlignCenterRight.svg | 2 +- editor/icons/ControlAlignLeftCenter.svg | 2 +- editor/icons/ControlAlignLeftWide.svg | 2 +- editor/icons/ControlAlignRightCenter.svg | 2 +- editor/icons/ControlAlignRightWide.svg | 2 +- editor/icons/ControlAlignTopCenter.svg | 2 +- editor/icons/ControlAlignTopLeft.svg | 2 +- editor/icons/ControlAlignTopRight.svg | 2 +- editor/icons/ControlAlignTopWide.svg | 2 +- editor/icons/ControlAlignWide.svg | 2 +- editor/icons/ControlHcenterWide.svg | 2 +- editor/icons/ControlLayout.svg | 2 +- editor/icons/ControlVcenterWide.svg | 2 +- editor/icons/ConvexPolygonShape2D.svg | 2 +- editor/icons/ConvexPolygonShape3D.svg | 2 +- editor/icons/CopyNodePath.svg | 2 +- editor/icons/CreateNewSceneFrom.svg | 2 +- editor/icons/CryptoKey.svg | 2 +- editor/icons/CubeMesh.svg | 2 +- editor/icons/Cubemap.svg | 2 +- editor/icons/CubemapArray.svg | 2 +- editor/icons/Curve.svg | 2 +- editor/icons/Curve2D.svg | 2 +- editor/icons/Curve3D.svg | 2 +- editor/icons/CurveClose.svg | 2 +- editor/icons/CurveConstant.svg | 2 +- editor/icons/CurveCreate.svg | 2 +- editor/icons/CurveCurve.svg | 2 +- editor/icons/CurveDelete.svg | 2 +- editor/icons/CurveEdit.svg | 2 +- editor/icons/CurveIn.svg | 2 +- editor/icons/CurveInOut.svg | 2 +- editor/icons/CurveLinear.svg | 2 +- editor/icons/CurveOut.svg | 2 +- editor/icons/CurveOutIn.svg | 2 +- editor/icons/CurveTexture.svg | 2 +- editor/icons/CylinderMesh.svg | 2 +- editor/icons/CylinderShape3D.svg | 2 +- editor/icons/DampedSpringJoint2D.svg | 2 +- editor/icons/Debug.svg | 2 +- editor/icons/DebugContinue.svg | 2 +- editor/icons/DebugNext.svg | 2 +- editor/icons/DebugSkipBreakpointsOff.svg | 2 +- editor/icons/DebugSkipBreakpointsOn.svg | 2 +- editor/icons/DebugStep.svg | 2 +- editor/icons/Decal.svg | 2 +- editor/icons/DefaultProjectIcon.svg | 2 +- editor/icons/DeleteSplit.svg | 2 +- editor/icons/Dictionary.svg | 2 +- editor/icons/DirectionalLight3D.svg | 2 +- editor/icons/DistractionFree.svg | 2 +- editor/icons/Duplicate.svg | 2 +- editor/icons/DynamicFont.svg | 2 +- editor/icons/DynamicFontData.svg | 2 +- editor/icons/Edit.svg | 2 +- editor/icons/EditBezier.svg | 2 +- editor/icons/EditInternal.svg | 2 +- editor/icons/EditKey.svg | 2 +- editor/icons/EditPivot.svg | 2 +- editor/icons/EditResource.svg | 2 +- editor/icons/Editor3DHandle.svg | 2 +- editor/icons/EditorControlAnchor.svg | 2 +- editor/icons/EditorCurveHandle.svg | 2 +- editor/icons/EditorFileDialog.svg | 2 +- editor/icons/EditorHandle.svg | 2 +- editor/icons/EditorHandleAdd.svg | 2 +- editor/icons/EditorInternalHandle.svg | 2 +- editor/icons/EditorPathSharpHandle.svg | 2 +- editor/icons/EditorPathSmoothHandle.svg | 2 +- editor/icons/EditorPivot.svg | 2 +- editor/icons/EditorPlugin.svg | 2 +- editor/icons/EditorPosition.svg | 2 +- editor/icons/EditorPositionPrevious.svg | 2 +- editor/icons/EditorPositionUnselected.svg | 2 +- editor/icons/Enum.svg | 2 +- editor/icons/Environment.svg | 2 +- editor/icons/Error.svg | 2 +- editor/icons/ErrorSign.svg | 2 +- editor/icons/ErrorWarning.svg | 2 +- editor/icons/ExpandBottomDock.svg | 2 +- editor/icons/Favorites.svg | 2 +- editor/icons/File.svg | 2 +- editor/icons/FileBigThumb.svg | 2 +- editor/icons/FileBroken.svg | 2 +- editor/icons/FileBrokenBigThumb.svg | 2 +- editor/icons/FileDead.svg | 2 +- editor/icons/FileDeadBigThumb.svg | 2 +- editor/icons/FileDeadMediumThumb.svg | 2 +- editor/icons/FileDialog.svg | 2 +- editor/icons/FileList.svg | 2 +- editor/icons/FileMediumThumb.svg | 2 +- editor/icons/FileThumbnail.svg | 2 +- editor/icons/Filesystem.svg | 2 +- editor/icons/FixedMaterial.svg | 2 +- editor/icons/FixedSpatialMaterial.svg | 2 +- editor/icons/Folder.svg | 2 +- editor/icons/FolderBigThumb.svg | 2 +- editor/icons/FolderMediumThumb.svg | 2 +- editor/icons/Font.svg | 2 +- editor/icons/Forward.svg | 2 +- editor/icons/GIProbe.svg | 2 +- editor/icons/GIProbeData.svg | 2 +- editor/icons/GPUParticles2D.svg | 2 +- editor/icons/GPUParticles3D.svg | 2 +- editor/icons/Generic6DOFJoint3D.svg | 2 +- editor/icons/Gizmo3DSamplePlayer.svg | 2 +- editor/icons/GizmoBakedLightmap.svg | 2 +- editor/icons/GizmoCPUParticles3D.svg | 2 +- editor/icons/GizmoCamera.svg | 2 +- editor/icons/GizmoDirectionalLight.svg | 2 +- editor/icons/GizmoGIProbe.svg | 2 +- editor/icons/GizmoGPUParticles3D.svg | 2 +- editor/icons/GizmoLight.svg | 2 +- editor/icons/GizmoListener.svg | 2 +- editor/icons/GizmoReflectionProbe.svg | 2 +- editor/icons/GizmoSpotLight.svg | 2 +- editor/icons/Godot.svg | 2 +- editor/icons/Gradient.svg | 2 +- editor/icons/GradientTexture.svg | 2 +- editor/icons/GraphEdit.svg | 2 +- editor/icons/GraphNode.svg | 2 +- editor/icons/Grid.svg | 2 +- editor/icons/GridContainer.svg | 2 +- editor/icons/GrooveJoint2D.svg | 2 +- editor/icons/Group.svg | 2 +- editor/icons/GroupViewport.svg | 2 +- editor/icons/Groups.svg | 2 +- editor/icons/GuiChecked.svg | 2 +- editor/icons/GuiClose.svg | 2 +- editor/icons/GuiCloseCustomizable.svg | 2 +- editor/icons/GuiDropdown.svg | 2 +- editor/icons/GuiEllipsis.svg | 2 +- editor/icons/GuiGraphNodePort.svg | 2 +- editor/icons/GuiHTick.svg | 2 +- editor/icons/GuiHsplitter.svg | 2 +- editor/icons/GuiMiniCheckerboard.svg | 2 +- editor/icons/GuiOptionArrow.svg | 2 +- editor/icons/GuiProgressBar.svg | 2 +- editor/icons/GuiProgressFill.svg | 2 +- editor/icons/GuiRadioChecked.svg | 2 +- editor/icons/GuiRadioUnchecked.svg | 2 +- editor/icons/GuiResizer.svg | 2 +- editor/icons/GuiScrollArrowLeft.svg | 2 +- editor/icons/GuiScrollArrowLeftHl.svg | 2 +- editor/icons/GuiScrollArrowRight.svg | 2 +- editor/icons/GuiScrollArrowRightHl.svg | 2 +- editor/icons/GuiScrollBg.svg | 2 +- editor/icons/GuiScrollGrabber.svg | 2 +- editor/icons/GuiScrollGrabberHl.svg | 2 +- editor/icons/GuiScrollGrabberPressed.svg | 2 +- editor/icons/GuiSliderGrabber.svg | 2 +- editor/icons/GuiSliderGrabberHl.svg | 2 +- editor/icons/GuiSpace.svg | 2 +- editor/icons/GuiSpinboxUpdown.svg | 2 +- editor/icons/GuiTab.svg | 2 +- editor/icons/GuiTabMenu.svg | 2 +- editor/icons/GuiTabMenuHl.svg | 2 +- editor/icons/GuiToggleOff.svg | 2 +- editor/icons/GuiToggleOn.svg | 2 +- editor/icons/GuiTreeArrowDown.svg | 2 +- editor/icons/GuiTreeArrowRight.svg | 2 +- editor/icons/GuiTreeArrowUp.svg | 2 +- editor/icons/GuiTreeUpdown.svg | 2 +- editor/icons/GuiUnchecked.svg | 2 +- editor/icons/GuiVTick.svg | 2 +- editor/icons/GuiViewportHdiagsplitter.svg | 2 +- editor/icons/GuiViewportVdiagsplitter.svg | 2 +- editor/icons/GuiViewportVhsplitter.svg | 2 +- editor/icons/GuiVisibilityHidden.svg | 2 +- editor/icons/GuiVisibilityVisible.svg | 2 +- editor/icons/GuiVisibilityXray.svg | 2 +- editor/icons/GuiVsplitBg.svg | 2 +- editor/icons/GuiVsplitter.svg | 2 +- editor/icons/HBoxContainer.svg | 2 +- editor/icons/HScrollBar.svg | 2 +- editor/icons/HSeparator.svg | 2 +- editor/icons/HSlider.svg | 2 +- editor/icons/HSplitContainer.svg | 2 +- editor/icons/HTTPRequest.svg | 2 +- editor/icons/Headphones.svg | 2 +- editor/icons/HeightMapShape3D.svg | 2 +- editor/icons/Help.svg | 2 +- editor/icons/HelpSearch.svg | 2 +- editor/icons/HingeJoint3D.svg | 2 +- editor/icons/History.svg | 2 +- editor/icons/Hsize.svg | 2 +- editor/icons/Image.svg | 2 +- editor/icons/ImageTexture.svg | 2 +- editor/icons/ImmediateGeometry3D.svg | 2 +- editor/icons/ImportCheck.svg | 2 +- editor/icons/ImportFail.svg | 2 +- editor/icons/InformationSign.svg | 2 +- editor/icons/InsertAfter.svg | 2 +- editor/icons/InsertBefore.svg | 2 +- editor/icons/Instance.svg | 2 +- editor/icons/InstanceOptions.svg | 2 +- editor/icons/InterpCubic.svg | 2 +- editor/icons/InterpLinear.svg | 2 +- editor/icons/InterpRaw.svg | 2 +- editor/icons/InterpWrapClamp.svg | 2 +- editor/icons/InterpWrapLoop.svg | 2 +- editor/icons/InverseKinematics.svg | 2 +- editor/icons/Issue.svg | 2 +- editor/icons/ItemList.svg | 2 +- editor/icons/JoyAxis.svg | 2 +- editor/icons/JoyButton.svg | 2 +- editor/icons/Joypad.svg | 2 +- editor/icons/Key.svg | 2 +- editor/icons/KeyAnimation.svg | 2 +- editor/icons/KeyAudio.svg | 2 +- editor/icons/KeyBezier.svg | 2 +- editor/icons/KeyBezierHandle.svg | 2 +- editor/icons/KeyBezierPoint.svg | 2 +- editor/icons/KeyBezierSelected.svg | 2 +- editor/icons/KeyCall.svg | 2 +- editor/icons/KeyHover.svg | 2 +- editor/icons/KeyInvalid.svg | 2 +- editor/icons/KeyNext.svg | 2 +- editor/icons/KeyPosition.svg | 2 +- editor/icons/KeyRotation.svg | 2 +- editor/icons/KeyScale.svg | 2 +- editor/icons/KeySelected.svg | 2 +- editor/icons/KeyValue.svg | 2 +- editor/icons/KeyXform.svg | 2 +- editor/icons/Keyboard.svg | 2 +- editor/icons/KeyboardPhysical.svg | 2 +- editor/icons/KinematicBody2D.svg | 2 +- editor/icons/KinematicBody3D.svg | 2 +- editor/icons/Label.svg | 2 +- editor/icons/LargeTexture.svg | 2 +- editor/icons/Light2D.svg | 2 +- editor/icons/LightOccluder2D.svg | 2 +- editor/icons/LightmapProbe.svg | 2 +- editor/icons/Line2D.svg | 2 +- editor/icons/LineEdit.svg | 2 +- editor/icons/LineShape2D.svg | 2 +- editor/icons/LinkButton.svg | 2 +- editor/icons/ListSelect.svg | 2 +- editor/icons/Listener3D.svg | 2 +- editor/icons/Load.svg | 2 +- editor/icons/Lock.svg | 2 +- editor/icons/LockViewport.svg | 2 +- editor/icons/Logo.svg | 2 +- editor/icons/Loop.svg | 2 +- editor/icons/LoopInterpolation.svg | 2 +- editor/icons/MainPlay.svg | 2 +- editor/icons/MarginContainer.svg | 2 +- editor/icons/MatchCase.svg | 2 +- editor/icons/MaterialPreviewCube.svg | 2 +- editor/icons/MaterialPreviewCubeOff.svg | 2 +- editor/icons/MaterialPreviewLight1.svg | 2 +- editor/icons/MaterialPreviewLight1Off.svg | 2 +- editor/icons/MaterialPreviewLight2.svg | 2 +- editor/icons/MaterialPreviewLight2Off.svg | 2 +- editor/icons/MaterialPreviewSphere.svg | 2 +- editor/icons/MaterialPreviewSphereOff.svg | 2 +- editor/icons/MemberConstant.svg | 2 +- editor/icons/MemberMethod.svg | 2 +- editor/icons/MemberProperty.svg | 2 +- editor/icons/MemberSignal.svg | 2 +- editor/icons/MemberTheme.svg | 2 +- editor/icons/MenuButton.svg | 2 +- editor/icons/Mesh.svg | 2 +- editor/icons/MeshInstance2D.svg | 2 +- editor/icons/MeshInstance3D.svg | 2 +- editor/icons/MeshLibrary.svg | 2 +- editor/icons/MeshTexture.svg | 2 +- editor/icons/MiniObject.svg | 2 +- editor/icons/MirrorX.svg | 2 +- editor/icons/MirrorY.svg | 2 +- editor/icons/Mouse.svg | 2 +- editor/icons/MoveDown.svg | 2 +- editor/icons/MoveLeft.svg | 2 +- editor/icons/MovePoint.svg | 2 +- editor/icons/MoveRight.svg | 2 +- editor/icons/MoveUp.svg | 2 +- editor/icons/MultiEdit.svg | 2 +- editor/icons/MultiLine.svg | 2 +- editor/icons/MultiMesh.svg | 2 +- editor/icons/MultiMeshInstance2D.svg | 2 +- editor/icons/MultiMeshInstance3D.svg | 2 +- editor/icons/Navigation2D.svg | 2 +- editor/icons/Navigation3D.svg | 2 +- editor/icons/NavigationAgent2D.svg | 2 +- editor/icons/NavigationAgent3D.svg | 2 +- editor/icons/NavigationMesh.svg | 2 +- editor/icons/NavigationObstacle2D.svg | 2 +- editor/icons/NavigationObstacle3D.svg | 2 +- editor/icons/NavigationPolygon.svg | 2 +- editor/icons/NavigationRegion2D.svg | 2 +- editor/icons/NavigationRegion3D.svg | 2 +- editor/icons/New.svg | 2 +- editor/icons/NewRoot.svg | 2 +- editor/icons/Nil.svg | 2 +- editor/icons/NinePatchRect.svg | 2 +- editor/icons/Node.svg | 2 +- editor/icons/Node2D.svg | 2 +- editor/icons/Node3D.svg | 2 +- editor/icons/NodePath.svg | 2 +- editor/icons/NodeWarning.svg | 2 +- editor/icons/NonFavorite.svg | 2 +- editor/icons/Object.svg | 2 +- editor/icons/OccluderPolygon2D.svg | 2 +- editor/icons/OmniLight3D.svg | 2 +- editor/icons/Onion.svg | 2 +- editor/icons/OptionButton.svg | 2 +- editor/icons/OverbrightIndicator.svg | 2 +- editor/icons/Override.svg | 2 +- editor/icons/PackedByteArray.svg | 2 +- editor/icons/PackedColorArray.svg | 2 +- editor/icons/PackedDataContainer.svg | 2 +- editor/icons/PackedFloat32Array.svg | 2 +- editor/icons/PackedFloat64Array.svg | 2 +- editor/icons/PackedInt32Array.svg | 2 +- editor/icons/PackedInt64Array.svg | 2 +- editor/icons/PackedScene.svg | 2 +- editor/icons/PackedStringArray.svg | 2 +- editor/icons/PackedVector2Array.svg | 2 +- editor/icons/PackedVector3Array.svg | 2 +- editor/icons/PaintVertex.svg | 2 +- editor/icons/Panel.svg | 2 +- editor/icons/PanelContainer.svg | 2 +- editor/icons/Panels1.svg | 2 +- editor/icons/Panels2.svg | 2 +- editor/icons/Panels2Alt.svg | 2 +- editor/icons/Panels3.svg | 2 +- editor/icons/Panels3Alt.svg | 2 +- editor/icons/Panels4.svg | 2 +- editor/icons/PanoramaSkyMaterial.svg | 2 +- editor/icons/ParallaxBackground.svg | 2 +- editor/icons/ParallaxLayer.svg | 2 +- editor/icons/ParticlesMaterial.svg | 2 +- editor/icons/Path2D.svg | 2 +- editor/icons/Path3D.svg | 2 +- editor/icons/PathFollow2D.svg | 2 +- editor/icons/PathFollow3D.svg | 2 +- editor/icons/Pause.svg | 2 +- editor/icons/PhysicalBone3D.svg | 2 +- editor/icons/PhysicalSkyMaterial.svg | 2 +- editor/icons/Pin.svg | 2 +- editor/icons/PinJoint2D.svg | 2 +- editor/icons/PinJoint3D.svg | 2 +- editor/icons/PinPressed.svg | 2 +- editor/icons/Plane.svg | 2 +- editor/icons/PlaneMesh.svg | 2 +- editor/icons/Play.svg | 2 +- editor/icons/PlayBackwards.svg | 2 +- editor/icons/PlayCustom.svg | 2 +- editor/icons/PlayOverlay.svg | 2 +- editor/icons/PlayScene.svg | 2 +- editor/icons/PlayStart.svg | 2 +- editor/icons/PlayStartBackwards.svg | 2 +- editor/icons/PlayTravel.svg | 2 +- editor/icons/PluginScript.svg | 2 +- editor/icons/PointMesh.svg | 2 +- editor/icons/Polygon2D.svg | 2 +- editor/icons/PolygonPathFinder.svg | 2 +- editor/icons/Popup.svg | 2 +- editor/icons/PopupMenu.svg | 2 +- editor/icons/PopupPanel.svg | 2 +- editor/icons/Portal.svg | 2 +- editor/icons/Position2D.svg | 2 +- editor/icons/Position3D.svg | 2 +- editor/icons/PrismMesh.svg | 2 +- editor/icons/ProceduralSkyMaterial.svg | 2 +- editor/icons/Progress1.svg | 2 +- editor/icons/Progress2.svg | 2 +- editor/icons/Progress3.svg | 2 +- editor/icons/Progress4.svg | 2 +- editor/icons/Progress5.svg | 2 +- editor/icons/Progress6.svg | 2 +- editor/icons/Progress7.svg | 2 +- editor/icons/Progress8.svg | 2 +- editor/icons/ProgressBar.svg | 2 +- editor/icons/ProjectIconLoading.svg | 2 +- editor/icons/ProximityGroup3D.svg | 2 +- editor/icons/ProxyTexture.svg | 2 +- editor/icons/Quad.svg | 2 +- editor/icons/QuadMesh.svg | 2 +- editor/icons/Quat.svg | 2 +- editor/icons/RID.svg | 2 +- editor/icons/RayCast2D.svg | 2 +- editor/icons/RayCast3D.svg | 2 +- editor/icons/RayShape2D.svg | 2 +- editor/icons/RayShape3D.svg | 2 +- editor/icons/Rayito.svg | 2 +- editor/icons/Rect2.svg | 2 +- editor/icons/RectangleShape2D.svg | 2 +- editor/icons/ReferenceRect.svg | 2 +- editor/icons/ReflectionProbe.svg | 2 +- editor/icons/RegionEdit.svg | 2 +- editor/icons/Reload.svg | 2 +- editor/icons/ReloadSmall.svg | 2 +- editor/icons/RemoteTransform2D.svg | 2 +- editor/icons/RemoteTransform3D.svg | 2 +- editor/icons/Remove.svg | 2 +- editor/icons/RemoveInternal.svg | 2 +- editor/icons/Rename.svg | 2 +- editor/icons/Reparent.svg | 2 +- editor/icons/ReparentToNewNode.svg | 2 +- editor/icons/ResourcePreloader.svg | 2 +- editor/icons/RichTextEffect.svg | 2 +- editor/icons/RichTextLabel.svg | 2 +- editor/icons/RigidBody2D.svg | 2 +- editor/icons/RigidBody3D.svg | 2 +- editor/icons/Room.svg | 2 +- editor/icons/RoomBounds.svg | 2 +- editor/icons/RootMotionView.svg | 2 +- editor/icons/Rotate0.svg | 2 +- editor/icons/Rotate180.svg | 2 +- editor/icons/Rotate270.svg | 2 +- editor/icons/Rotate90.svg | 2 +- editor/icons/RotateLeft.svg | 2 +- editor/icons/RotateRight.svg | 2 +- editor/icons/Ruler.svg | 2 +- editor/icons/SampleLibrary.svg | 2 +- editor/icons/Save.svg | 2 +- editor/icons/Script.svg | 2 +- editor/icons/ScriptCreate.svg | 2 +- editor/icons/ScriptCreateDialog.svg | 2 +- editor/icons/ScriptExtend.svg | 2 +- editor/icons/ScriptRemove.svg | 2 +- editor/icons/ScrollContainer.svg | 2 +- editor/icons/Search.svg | 2 +- editor/icons/SegmentShape2D.svg | 2 +- editor/icons/Shader.svg | 2 +- editor/icons/ShaderGlobalsOverride.svg | 2 +- editor/icons/ShaderMaterial.svg | 2 +- editor/icons/ShortCut.svg | 2 +- editor/icons/Signal.svg | 2 +- editor/icons/Signals.svg | 2 +- editor/icons/SignalsAndGroups.svg | 2 +- editor/icons/Skeleton2D.svg | 2 +- editor/icons/Skeleton3D.svg | 2 +- editor/icons/SkeletonIK3D.svg | 2 +- editor/icons/Sky.svg | 2 +- editor/icons/SliderJoint3D.svg | 2 +- editor/icons/Slot.svg | 2 +- editor/icons/Snap.svg | 2 +- editor/icons/SnapGrid.svg | 2 +- editor/icons/SoftBody3D.svg | 2 +- editor/icons/Sort.svg | 2 +- editor/icons/SphereMesh.svg | 2 +- editor/icons/SphereShape3D.svg | 2 +- editor/icons/SpinBox.svg | 2 +- editor/icons/SpotLight3D.svg | 2 +- editor/icons/SpringArm3D.svg | 2 +- editor/icons/Sprite2D.svg | 2 +- editor/icons/Sprite3D.svg | 2 +- editor/icons/SpriteFrames.svg | 2 +- editor/icons/SpriteSheet.svg | 2 +- editor/icons/StaticBody2D.svg | 2 +- editor/icons/StaticBody3D.svg | 2 +- editor/icons/StatusError.svg | 2 +- editor/icons/StatusSuccess.svg | 2 +- editor/icons/StatusWarning.svg | 2 +- editor/icons/Stop.svg | 2 +- editor/icons/StreamTexture.svg | 2 +- editor/icons/String.svg | 2 +- editor/icons/StyleBoxEmpty.svg | 2 +- editor/icons/StyleBoxFlat.svg | 2 +- editor/icons/StyleBoxLine.svg | 2 +- editor/icons/StyleBoxTexture.svg | 2 +- editor/icons/SubViewport.svg | 2 +- editor/icons/SubViewportContainer.svg | 2 +- editor/icons/TabContainer.svg | 2 +- editor/icons/Tabs.svg | 2 +- editor/icons/TestCube.svg | 2 +- editor/icons/TextEdit.svg | 2 +- editor/icons/TextFile.svg | 2 +- editor/icons/Texture3D.svg | 2 +- editor/icons/TextureArray.svg | 2 +- editor/icons/TextureButton.svg | 2 +- editor/icons/TextureProgress.svg | 2 +- editor/icons/TextureRect.svg | 2 +- editor/icons/Theme.svg | 2 +- editor/icons/ThumbnailWait.svg | 2 +- editor/icons/TileMap.svg | 2 +- editor/icons/TileSet.svg | 2 +- editor/icons/Time.svg | 2 +- editor/icons/TimelineIndicator.svg | 2 +- editor/icons/Timer.svg | 2 +- editor/icons/ToolAddNode.svg | 2 +- editor/icons/ToolConnect.svg | 2 +- editor/icons/ToolMove.svg | 2 +- editor/icons/ToolPan.svg | 2 +- editor/icons/ToolRotate.svg | 2 +- editor/icons/ToolScale.svg | 2 +- editor/icons/ToolSelect.svg | 2 +- editor/icons/ToolTriangle.svg | 2 +- editor/icons/Tools.svg | 2 +- editor/icons/TouchScreenButton.svg | 2 +- editor/icons/TrackAddKey.svg | 2 +- editor/icons/TrackAddKeyHl.svg | 2 +- editor/icons/TrackCapture.svg | 2 +- editor/icons/TrackContinuous.svg | 2 +- editor/icons/TrackDiscrete.svg | 2 +- editor/icons/TrackTrigger.svg | 2 +- editor/icons/Transform.svg | 2 +- editor/icons/Transform2D.svg | 2 +- editor/icons/TransitionEnd.svg | 2 +- editor/icons/TransitionEndAuto.svg | 2 +- editor/icons/TransitionEndAutoBig.svg | 2 +- editor/icons/TransitionEndBig.svg | 2 +- editor/icons/TransitionImmediate.svg | 2 +- editor/icons/TransitionImmediateAuto.svg | 2 +- editor/icons/TransitionImmediateAutoBig.svg | 2 +- editor/icons/TransitionImmediateBig.svg | 2 +- editor/icons/TransitionSync.svg | 2 +- editor/icons/TransitionSyncAuto.svg | 2 +- editor/icons/TransitionSyncAutoBig.svg | 2 +- editor/icons/TransitionSyncBig.svg | 2 +- editor/icons/Translation.svg | 2 +- editor/icons/Transpose.svg | 2 +- editor/icons/Tree.svg | 2 +- editor/icons/Tween.svg | 2 +- editor/icons/Unbone.svg | 2 +- editor/icons/Ungroup.svg | 2 +- editor/icons/Unlock.svg | 2 +- editor/icons/UnpaintVertex.svg | 2 +- editor/icons/Uv.svg | 2 +- editor/icons/VBoxContainer.svg | 2 +- editor/icons/VScrollBar.svg | 2 +- editor/icons/VSeparator.svg | 2 +- editor/icons/VSlider.svg | 2 +- editor/icons/VSplitContainer.svg | 2 +- editor/icons/Variant.svg | 2 +- editor/icons/Vector2.svg | 2 +- editor/icons/Vector3.svg | 2 +- editor/icons/VehicleBody3D.svg | 2 +- editor/icons/VehicleWheel3D.svg | 2 +- editor/icons/VideoPlayer.svg | 2 +- editor/icons/Viewport.svg | 2 +- editor/icons/ViewportSpeed.svg | 2 +- editor/icons/ViewportTexture.svg | 2 +- editor/icons/ViewportZoom.svg | 2 +- editor/icons/VisibilityEnabler2D.svg | 2 +- editor/icons/VisibilityEnabler3D.svg | 2 +- editor/icons/VisibilityNotifier2D.svg | 2 +- editor/icons/VisibilityNotifier3D.svg | 2 +- editor/icons/VisualShader.svg | 2 +- editor/icons/VisualShaderPort.svg | 2 +- editor/icons/Warning.svg | 2 +- editor/icons/Window.svg | 2 +- editor/icons/World2D.svg | 2 +- editor/icons/World3D.svg | 2 +- editor/icons/WorldEnvironment.svg | 2 +- editor/icons/WorldMarginShape3D.svg | 2 +- editor/icons/X509Certificate.svg | 2 +- editor/icons/XRAnchor3D.svg | 2 +- editor/icons/XRCamera3D.svg | 2 +- editor/icons/XRController3D.svg | 2 +- editor/icons/XROrigin3D.svg | 2 +- editor/icons/YSort.svg | 2 +- editor/icons/Zoom.svg | 2 +- editor/icons/ZoomLess.svg | 2 +- editor/icons/ZoomMore.svg | 2 +- editor/icons/ZoomReset.svg | 2 +- editor/icons/bool.svg | 2 +- editor/icons/float.svg | 2 +- editor/icons/int.svg | 2 +- logo.svg | 2 +- misc/dist/document_icons/gdscript.svg | 2 +- misc/dist/document_icons/gdscript_extra_small.svg | 2 +- misc/dist/document_icons/gdscript_small.svg | 2 +- misc/dist/document_icons/project.svg | 2 +- misc/dist/document_icons/project_extra_small.svg | 2 +- misc/dist/document_icons/project_small.svg | 2 +- misc/dist/document_icons/resource.svg | 2 +- misc/dist/document_icons/resource_extra_small.svg | 2 +- misc/dist/document_icons/resource_small.svg | 2 +- misc/dist/document_icons/scene.svg | 2 +- misc/dist/document_icons/scene_extra_small.svg | 2 +- misc/dist/document_icons/scene_small.svg | 2 +- 689 files changed, 689 insertions(+), 689 deletions(-) diff --git a/editor/icons/2D.svg b/editor/icons/2D.svg index e1a96aeab6e..afb9f4b45f1 100644 --- a/editor/icons/2D.svg +++ b/editor/icons/2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/3D.svg b/editor/icons/3D.svg index 2a1d5ff36d8..501b47aca12 100644 --- a/editor/icons/3D.svg +++ b/editor/icons/3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AABB.svg b/editor/icons/AABB.svg index d6fbc525417..03ec25caf23 100644 --- a/editor/icons/AABB.svg +++ b/editor/icons/AABB.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AcceptDialog.svg b/editor/icons/AcceptDialog.svg index 07e54d722f8..d88ebd4cb22 100644 --- a/editor/icons/AcceptDialog.svg +++ b/editor/icons/AcceptDialog.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ActionCopy.svg b/editor/icons/ActionCopy.svg index d7a1e1097ab..0d682901476 100644 --- a/editor/icons/ActionCopy.svg +++ b/editor/icons/ActionCopy.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ActionCut.svg b/editor/icons/ActionCut.svg index 97df9b2d5a3..a4ed2a2a150 100644 --- a/editor/icons/ActionCut.svg +++ b/editor/icons/ActionCut.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ActionPaste.svg b/editor/icons/ActionPaste.svg index 6d46f899f8a..423bc7baabb 100644 --- a/editor/icons/ActionPaste.svg +++ b/editor/icons/ActionPaste.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Add.svg b/editor/icons/Add.svg index a241829603a..afad08a2e0c 100644 --- a/editor/icons/Add.svg +++ b/editor/icons/Add.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AddAtlasTile.svg b/editor/icons/AddAtlasTile.svg index 97d3590678e..a6d94005a8f 100644 --- a/editor/icons/AddAtlasTile.svg +++ b/editor/icons/AddAtlasTile.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AddAutotile.svg b/editor/icons/AddAutotile.svg index c6f1df422d5..52664b3eb63 100644 --- a/editor/icons/AddAutotile.svg +++ b/editor/icons/AddAutotile.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AddSingleTile.svg b/editor/icons/AddSingleTile.svg index 319fef80781..64bf1c99c0f 100644 --- a/editor/icons/AddSingleTile.svg +++ b/editor/icons/AddSingleTile.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AddSplit.svg b/editor/icons/AddSplit.svg index 1f33e8c72b3..5c034d8d124 100644 --- a/editor/icons/AddSplit.svg +++ b/editor/icons/AddSplit.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Anchor.svg b/editor/icons/Anchor.svg index 119960d1770..cb40970ba33 100644 --- a/editor/icons/Anchor.svg +++ b/editor/icons/Anchor.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AnimatedSprite2D.svg b/editor/icons/AnimatedSprite2D.svg index 411ddda015a..0c9d2933eea 100644 --- a/editor/icons/AnimatedSprite2D.svg +++ b/editor/icons/AnimatedSprite2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AnimatedSprite3D.svg b/editor/icons/AnimatedSprite3D.svg index 974c4e04eba..b25ebae6836 100644 --- a/editor/icons/AnimatedSprite3D.svg +++ b/editor/icons/AnimatedSprite3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AnimatedTexture.svg b/editor/icons/AnimatedTexture.svg index 3719b647470..532573103f5 100644 --- a/editor/icons/AnimatedTexture.svg +++ b/editor/icons/AnimatedTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Animation.svg b/editor/icons/Animation.svg index 2cb738a8a6b..917784baddf 100644 --- a/editor/icons/Animation.svg +++ b/editor/icons/Animation.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AnimationFilter.svg b/editor/icons/AnimationFilter.svg index 45c323543d3..8a2b0593485 100644 --- a/editor/icons/AnimationFilter.svg +++ b/editor/icons/AnimationFilter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AnimationPlayer.svg b/editor/icons/AnimationPlayer.svg index a5f7804e0de..52b6b02c154 100644 --- a/editor/icons/AnimationPlayer.svg +++ b/editor/icons/AnimationPlayer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AnimationTrackGroup.svg b/editor/icons/AnimationTrackGroup.svg index d0d14b7c44e..c5811e1bfa9 100644 --- a/editor/icons/AnimationTrackGroup.svg +++ b/editor/icons/AnimationTrackGroup.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AnimationTrackList.svg b/editor/icons/AnimationTrackList.svg index e47c8b18cbd..3ba49153506 100644 --- a/editor/icons/AnimationTrackList.svg +++ b/editor/icons/AnimationTrackList.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AnimationTree.svg b/editor/icons/AnimationTree.svg index 718eaac2d28..d6484097c98 100644 --- a/editor/icons/AnimationTree.svg +++ b/editor/icons/AnimationTree.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Area2D.svg b/editor/icons/Area2D.svg index e374205b13e..005f70ed480 100644 --- a/editor/icons/Area2D.svg +++ b/editor/icons/Area2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Area3D.svg b/editor/icons/Area3D.svg index 21ebe3c2519..4be8a2cced9 100644 --- a/editor/icons/Area3D.svg +++ b/editor/icons/Area3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Array.svg b/editor/icons/Array.svg index d499fcac3a2..068007bb292 100644 --- a/editor/icons/Array.svg +++ b/editor/icons/Array.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ArrayMesh.svg b/editor/icons/ArrayMesh.svg index 394a18623d5..3a33a966aaa 100644 --- a/editor/icons/ArrayMesh.svg +++ b/editor/icons/ArrayMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ArrowDown.svg b/editor/icons/ArrowDown.svg index 49a93e6e28b..d24357d2c57 100644 --- a/editor/icons/ArrowDown.svg +++ b/editor/icons/ArrowDown.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ArrowLeft.svg b/editor/icons/ArrowLeft.svg index fbbe5d90753..ddd2f4e3536 100644 --- a/editor/icons/ArrowLeft.svg +++ b/editor/icons/ArrowLeft.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ArrowRight.svg b/editor/icons/ArrowRight.svg index 7895158bb1a..a0c78dc1ebe 100644 --- a/editor/icons/ArrowRight.svg +++ b/editor/icons/ArrowRight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ArrowUp.svg b/editor/icons/ArrowUp.svg index 9bf19a6a124..f71f95c7b18 100644 --- a/editor/icons/ArrowUp.svg +++ b/editor/icons/ArrowUp.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AtlasTexture.svg b/editor/icons/AtlasTexture.svg index 28a44e179a5..e261d372d1b 100644 --- a/editor/icons/AtlasTexture.svg +++ b/editor/icons/AtlasTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AudioBusBypass.svg b/editor/icons/AudioBusBypass.svg index c251a7c83f8..2723f847ebe 100644 --- a/editor/icons/AudioBusBypass.svg +++ b/editor/icons/AudioBusBypass.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AudioBusLayout.svg b/editor/icons/AudioBusLayout.svg index f95794a7c78..3b1f3e7a0de 100644 --- a/editor/icons/AudioBusLayout.svg +++ b/editor/icons/AudioBusLayout.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AudioBusMute.svg b/editor/icons/AudioBusMute.svg index 4750b0fec04..dbfcc811078 100644 --- a/editor/icons/AudioBusMute.svg +++ b/editor/icons/AudioBusMute.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AudioBusSolo.svg b/editor/icons/AudioBusSolo.svg index 5be72a89612..4065bdc6308 100644 --- a/editor/icons/AudioBusSolo.svg +++ b/editor/icons/AudioBusSolo.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AudioStreamOGGVorbis.svg b/editor/icons/AudioStreamOGGVorbis.svg index a8d6fb6bf17..900d5873fe8 100644 --- a/editor/icons/AudioStreamOGGVorbis.svg +++ b/editor/icons/AudioStreamOGGVorbis.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AudioStreamPlayer.svg b/editor/icons/AudioStreamPlayer.svg index bbe2793407d..48aa7c29046 100644 --- a/editor/icons/AudioStreamPlayer.svg +++ b/editor/icons/AudioStreamPlayer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AudioStreamPlayer2D.svg b/editor/icons/AudioStreamPlayer2D.svg index 090b23ff7c8..21cf751c924 100644 --- a/editor/icons/AudioStreamPlayer2D.svg +++ b/editor/icons/AudioStreamPlayer2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AudioStreamPlayer3D.svg b/editor/icons/AudioStreamPlayer3D.svg index 95da9818aac..d1e39e62f32 100644 --- a/editor/icons/AudioStreamPlayer3D.svg +++ b/editor/icons/AudioStreamPlayer3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AudioStreamSample.svg b/editor/icons/AudioStreamSample.svg index a8d6fb6bf17..900d5873fe8 100644 --- a/editor/icons/AudioStreamSample.svg +++ b/editor/icons/AudioStreamSample.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AutoEnd.svg b/editor/icons/AutoEnd.svg index 35f5fb2b1c9..b5d925c92ee 100644 --- a/editor/icons/AutoEnd.svg +++ b/editor/icons/AutoEnd.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AutoKey.svg b/editor/icons/AutoKey.svg index 3d5569397fd..9852d1360e5 100644 --- a/editor/icons/AutoKey.svg +++ b/editor/icons/AutoKey.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AutoPlay.svg b/editor/icons/AutoPlay.svg index dbe41f244f4..f1a6d426c95 100644 --- a/editor/icons/AutoPlay.svg +++ b/editor/icons/AutoPlay.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/AutoTriangle.svg b/editor/icons/AutoTriangle.svg index 13b8f7c5d2d..fbd212f2ba0 100644 --- a/editor/icons/AutoTriangle.svg +++ b/editor/icons/AutoTriangle.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Back.svg b/editor/icons/Back.svg index c8ea97fa5c8..e98a5838552 100644 --- a/editor/icons/Back.svg +++ b/editor/icons/Back.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BackBufferCopy.svg b/editor/icons/BackBufferCopy.svg index c16cfe9009c..9bd40395c0d 100644 --- a/editor/icons/BackBufferCopy.svg +++ b/editor/icons/BackBufferCopy.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Bake.svg b/editor/icons/Bake.svg index 9bcfb174dc7..9c652c76b35 100644 --- a/editor/icons/Bake.svg +++ b/editor/icons/Bake.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BakedLightmap.svg b/editor/icons/BakedLightmap.svg index 338a1000224..ea9efa55ba6 100644 --- a/editor/icons/BakedLightmap.svg +++ b/editor/icons/BakedLightmap.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BakedLightmapData.svg b/editor/icons/BakedLightmapData.svg index e8d471c2af4..f5dcfb618be 100644 --- a/editor/icons/BakedLightmapData.svg +++ b/editor/icons/BakedLightmapData.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Basis.svg b/editor/icons/Basis.svg index ecdb0f4ec08..5ff892888ae 100644 --- a/editor/icons/Basis.svg +++ b/editor/icons/Basis.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BezierHandlesBalanced.svg b/editor/icons/BezierHandlesBalanced.svg index 6656d3f5eb9..e4b8ae12e32 100644 --- a/editor/icons/BezierHandlesBalanced.svg +++ b/editor/icons/BezierHandlesBalanced.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BezierHandlesFree.svg b/editor/icons/BezierHandlesFree.svg index 06abfe34ab8..88f8146871a 100644 --- a/editor/icons/BezierHandlesFree.svg +++ b/editor/icons/BezierHandlesFree.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BezierHandlesMirror.svg b/editor/icons/BezierHandlesMirror.svg index be85f170c72..3a4b75ee96f 100644 --- a/editor/icons/BezierHandlesMirror.svg +++ b/editor/icons/BezierHandlesMirror.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BitMap.svg b/editor/icons/BitMap.svg index b61c1b7dc55..703c958ee3a 100644 --- a/editor/icons/BitMap.svg +++ b/editor/icons/BitMap.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BitmapFont.svg b/editor/icons/BitmapFont.svg index 5e5bd859c9b..d3ab5f7dd7f 100644 --- a/editor/icons/BitmapFont.svg +++ b/editor/icons/BitmapFont.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Blend.svg b/editor/icons/Blend.svg index c78b9287fa0..4de2fa5a43c 100644 --- a/editor/icons/Blend.svg +++ b/editor/icons/Blend.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Bone.svg b/editor/icons/Bone.svg index fafebb0394c..cbfa4794edc 100644 --- a/editor/icons/Bone.svg +++ b/editor/icons/Bone.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Bone2D.svg b/editor/icons/Bone2D.svg index 94bfff61e47..2298022d6ab 100644 --- a/editor/icons/Bone2D.svg +++ b/editor/icons/Bone2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BoneAttachment3D.svg b/editor/icons/BoneAttachment3D.svg index 0b7dede0b6e..2f2a9cdae56 100644 --- a/editor/icons/BoneAttachment3D.svg +++ b/editor/icons/BoneAttachment3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BoneTrack.svg b/editor/icons/BoneTrack.svg index 0f6f9bb6cd8..34fb76e696c 100644 --- a/editor/icons/BoneTrack.svg +++ b/editor/icons/BoneTrack.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BoxShape3D.svg b/editor/icons/BoxShape3D.svg index 171e95f4fa2..f9012d1fe4b 100644 --- a/editor/icons/BoxShape3D.svg +++ b/editor/icons/BoxShape3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Bucket.svg b/editor/icons/Bucket.svg index fc3481290d9..a30fce3112e 100644 --- a/editor/icons/Bucket.svg +++ b/editor/icons/Bucket.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BusVuEmpty.svg b/editor/icons/BusVuEmpty.svg index 5260b9e2520..32a27e26b57 100644 --- a/editor/icons/BusVuEmpty.svg +++ b/editor/icons/BusVuEmpty.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BusVuFrozen.svg b/editor/icons/BusVuFrozen.svg index c10bb5a1a2f..a78b83a6442 100644 --- a/editor/icons/BusVuFrozen.svg +++ b/editor/icons/BusVuFrozen.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/BusVuFull.svg b/editor/icons/BusVuFull.svg index 377ac60bc15..acfa742d18b 100644 --- a/editor/icons/BusVuFull.svg +++ b/editor/icons/BusVuFull.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Button.svg b/editor/icons/Button.svg index 6ea5663dda8..60460382890 100644 --- a/editor/icons/Button.svg +++ b/editor/icons/Button.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ButtonGroup.svg b/editor/icons/ButtonGroup.svg index 683a8c3054e..0fd49f06468 100644 --- a/editor/icons/ButtonGroup.svg +++ b/editor/icons/ButtonGroup.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CPUParticles2D.svg b/editor/icons/CPUParticles2D.svg index 25afc35bece..29770bc2404 100644 --- a/editor/icons/CPUParticles2D.svg +++ b/editor/icons/CPUParticles2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CPUParticles3D.svg b/editor/icons/CPUParticles3D.svg index af4115c93f2..072703cfa96 100644 --- a/editor/icons/CPUParticles3D.svg +++ b/editor/icons/CPUParticles3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Camera2D.svg b/editor/icons/Camera2D.svg index 9a91b3017b5..b6aa869be33 100644 --- a/editor/icons/Camera2D.svg +++ b/editor/icons/Camera2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Camera3D.svg b/editor/icons/Camera3D.svg index af1cb8a2e96..f6e99cb56e4 100644 --- a/editor/icons/Camera3D.svg +++ b/editor/icons/Camera3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CameraEffects.svg b/editor/icons/CameraEffects.svg index 2f6dad5fd89..de1d55e1a9f 100644 --- a/editor/icons/CameraEffects.svg +++ b/editor/icons/CameraEffects.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CameraTexture.svg b/editor/icons/CameraTexture.svg index e61b5902f09..adb47620821 100644 --- a/editor/icons/CameraTexture.svg +++ b/editor/icons/CameraTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CanvasItem.svg b/editor/icons/CanvasItem.svg index eefe501ca8a..f3962904368 100644 --- a/editor/icons/CanvasItem.svg +++ b/editor/icons/CanvasItem.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CanvasItemMaterial.svg b/editor/icons/CanvasItemMaterial.svg index 7df06ed6869..241184f8b92 100644 --- a/editor/icons/CanvasItemMaterial.svg +++ b/editor/icons/CanvasItemMaterial.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CanvasItemShader.svg b/editor/icons/CanvasItemShader.svg index 834fe61472f..b8b15888431 100644 --- a/editor/icons/CanvasItemShader.svg +++ b/editor/icons/CanvasItemShader.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CanvasItemShaderGraph.svg b/editor/icons/CanvasItemShaderGraph.svg index 3e837516982..838ca45178f 100644 --- a/editor/icons/CanvasItemShaderGraph.svg +++ b/editor/icons/CanvasItemShaderGraph.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CanvasLayer.svg b/editor/icons/CanvasLayer.svg index a3fcc903d70..6e98fd1ba9b 100644 --- a/editor/icons/CanvasLayer.svg +++ b/editor/icons/CanvasLayer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CanvasModulate.svg b/editor/icons/CanvasModulate.svg index a7b788d6383..6096beb732d 100644 --- a/editor/icons/CanvasModulate.svg +++ b/editor/icons/CanvasModulate.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CapsuleMesh.svg b/editor/icons/CapsuleMesh.svg index 1c9470105f0..f7424310aac 100644 --- a/editor/icons/CapsuleMesh.svg +++ b/editor/icons/CapsuleMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CapsuleShape2D.svg b/editor/icons/CapsuleShape2D.svg index 81de995cb4f..99a67d4641e 100644 --- a/editor/icons/CapsuleShape2D.svg +++ b/editor/icons/CapsuleShape2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CapsuleShape3D.svg b/editor/icons/CapsuleShape3D.svg index ba035ca1968..4d5bc522b18 100644 --- a/editor/icons/CapsuleShape3D.svg +++ b/editor/icons/CapsuleShape3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CenterContainer.svg b/editor/icons/CenterContainer.svg index 5d854a3cc3b..af1958c2d8b 100644 --- a/editor/icons/CenterContainer.svg +++ b/editor/icons/CenterContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CheckBox.svg b/editor/icons/CheckBox.svg index 6cb1f2aacda..8707dfce0c6 100644 --- a/editor/icons/CheckBox.svg +++ b/editor/icons/CheckBox.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CheckButton.svg b/editor/icons/CheckButton.svg index f689c5fe477..4b8106ecc05 100644 --- a/editor/icons/CheckButton.svg +++ b/editor/icons/CheckButton.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Checkerboard.svg b/editor/icons/Checkerboard.svg index 7923291017e..38b537e8729 100644 --- a/editor/icons/Checkerboard.svg +++ b/editor/icons/Checkerboard.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CircleShape2D.svg b/editor/icons/CircleShape2D.svg index e41fc8807c7..d23ca6d8a38 100644 --- a/editor/icons/CircleShape2D.svg +++ b/editor/icons/CircleShape2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ClassList.svg b/editor/icons/ClassList.svg index ae2494724da..11713b125a5 100644 --- a/editor/icons/ClassList.svg +++ b/editor/icons/ClassList.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Clear.svg b/editor/icons/Clear.svg index 91343ca6aff..43c00311bca 100644 --- a/editor/icons/Clear.svg +++ b/editor/icons/Clear.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ClippedCamera3D.svg b/editor/icons/ClippedCamera3D.svg index 8c80c04e27a..a66f7844a9d 100644 --- a/editor/icons/ClippedCamera3D.svg +++ b/editor/icons/ClippedCamera3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Close.svg b/editor/icons/Close.svg index 4147c7bcdd1..331727ab913 100644 --- a/editor/icons/Close.svg +++ b/editor/icons/Close.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Collapse.svg b/editor/icons/Collapse.svg index 62b5e55d814..5e5611adb26 100644 --- a/editor/icons/Collapse.svg +++ b/editor/icons/Collapse.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CollisionPolygon2D.svg b/editor/icons/CollisionPolygon2D.svg index 54148f3fd47..524efd1e65d 100644 --- a/editor/icons/CollisionPolygon2D.svg +++ b/editor/icons/CollisionPolygon2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CollisionPolygon3D.svg b/editor/icons/CollisionPolygon3D.svg index 5e849ae4e34..9b8b13c5145 100644 --- a/editor/icons/CollisionPolygon3D.svg +++ b/editor/icons/CollisionPolygon3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CollisionShape2D.svg b/editor/icons/CollisionShape2D.svg index 8210bf917f4..d366ddb6307 100644 --- a/editor/icons/CollisionShape2D.svg +++ b/editor/icons/CollisionShape2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CollisionShape3D.svg b/editor/icons/CollisionShape3D.svg index 8f14996a97b..cf5925ce791 100644 --- a/editor/icons/CollisionShape3D.svg +++ b/editor/icons/CollisionShape3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Color.svg b/editor/icons/Color.svg index de0540763e7..91bc0d1d2dd 100644 --- a/editor/icons/Color.svg +++ b/editor/icons/Color.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ColorPick.svg b/editor/icons/ColorPick.svg index d73225bd607..ff44937a21e 100644 --- a/editor/icons/ColorPick.svg +++ b/editor/icons/ColorPick.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ColorPicker.svg b/editor/icons/ColorPicker.svg index 3d03615708e..c4f48cd3475 100644 --- a/editor/icons/ColorPicker.svg +++ b/editor/icons/ColorPicker.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ColorPickerButton.svg b/editor/icons/ColorPickerButton.svg index b9fa86db6a6..fa2a6154285 100644 --- a/editor/icons/ColorPickerButton.svg +++ b/editor/icons/ColorPickerButton.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ColorRamp.svg b/editor/icons/ColorRamp.svg index e0f0a674833..13e05dd1eeb 100644 --- a/editor/icons/ColorRamp.svg +++ b/editor/icons/ColorRamp.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ColorRect.svg b/editor/icons/ColorRect.svg index c2054de9d35..306401191a9 100644 --- a/editor/icons/ColorRect.svg +++ b/editor/icons/ColorRect.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ColorTrackVu.svg b/editor/icons/ColorTrackVu.svg index 5760f810705..faf82d86a97 100644 --- a/editor/icons/ColorTrackVu.svg +++ b/editor/icons/ColorTrackVu.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ConcavePolygonShape2D.svg b/editor/icons/ConcavePolygonShape2D.svg index 38a92095c91..463fece525a 100644 --- a/editor/icons/ConcavePolygonShape2D.svg +++ b/editor/icons/ConcavePolygonShape2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ConcavePolygonShape3D.svg b/editor/icons/ConcavePolygonShape3D.svg index 001ab82826a..60d1a6234fb 100644 --- a/editor/icons/ConcavePolygonShape3D.svg +++ b/editor/icons/ConcavePolygonShape3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ConeTwistJoint3D.svg b/editor/icons/ConeTwistJoint3D.svg index 0e5e98a17b4..9eff38d0dc9 100644 --- a/editor/icons/ConeTwistJoint3D.svg +++ b/editor/icons/ConeTwistJoint3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ConfirmationDialog.svg b/editor/icons/ConfirmationDialog.svg index 2d6e45b51f5..f23b5f932a0 100644 --- a/editor/icons/ConfirmationDialog.svg +++ b/editor/icons/ConfirmationDialog.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Container.svg b/editor/icons/Container.svg index aaea67faa19..a7be8802685 100644 --- a/editor/icons/Container.svg +++ b/editor/icons/Container.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Control.svg b/editor/icons/Control.svg index ff6a52e29a0..0ec9c4c6fee 100644 --- a/editor/icons/Control.svg +++ b/editor/icons/Control.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignBottomCenter.svg b/editor/icons/ControlAlignBottomCenter.svg index 7aee8caa794..ca7f0c2e01e 100644 --- a/editor/icons/ControlAlignBottomCenter.svg +++ b/editor/icons/ControlAlignBottomCenter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignBottomLeft.svg b/editor/icons/ControlAlignBottomLeft.svg index aa26eb570ad..34904b5c6a2 100644 --- a/editor/icons/ControlAlignBottomLeft.svg +++ b/editor/icons/ControlAlignBottomLeft.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignBottomRight.svg b/editor/icons/ControlAlignBottomRight.svg index 737328e6f0a..169ca2840f2 100644 --- a/editor/icons/ControlAlignBottomRight.svg +++ b/editor/icons/ControlAlignBottomRight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignBottomWide.svg b/editor/icons/ControlAlignBottomWide.svg index ad0d7fac859..f51043789f4 100644 --- a/editor/icons/ControlAlignBottomWide.svg +++ b/editor/icons/ControlAlignBottomWide.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignCenter.svg b/editor/icons/ControlAlignCenter.svg index 14dd5005007..44dda03e47d 100644 --- a/editor/icons/ControlAlignCenter.svg +++ b/editor/icons/ControlAlignCenter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignCenterLeft.svg b/editor/icons/ControlAlignCenterLeft.svg index 52f1d4d1437..fc4674af487 100644 --- a/editor/icons/ControlAlignCenterLeft.svg +++ b/editor/icons/ControlAlignCenterLeft.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignCenterRight.svg b/editor/icons/ControlAlignCenterRight.svg index 201796f1723..c66a3d59b5f 100644 --- a/editor/icons/ControlAlignCenterRight.svg +++ b/editor/icons/ControlAlignCenterRight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignLeftCenter.svg b/editor/icons/ControlAlignLeftCenter.svg index 8135c9d8517..612c36b4d65 100644 --- a/editor/icons/ControlAlignLeftCenter.svg +++ b/editor/icons/ControlAlignLeftCenter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignLeftWide.svg b/editor/icons/ControlAlignLeftWide.svg index 56d16bec76f..82f4911cb48 100644 --- a/editor/icons/ControlAlignLeftWide.svg +++ b/editor/icons/ControlAlignLeftWide.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignRightCenter.svg b/editor/icons/ControlAlignRightCenter.svg index 69c4dba40dd..43f8618c803 100644 --- a/editor/icons/ControlAlignRightCenter.svg +++ b/editor/icons/ControlAlignRightCenter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignRightWide.svg b/editor/icons/ControlAlignRightWide.svg index b0a46cdb827..0ee0e095e2e 100644 --- a/editor/icons/ControlAlignRightWide.svg +++ b/editor/icons/ControlAlignRightWide.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignTopCenter.svg b/editor/icons/ControlAlignTopCenter.svg index cafb3ff8565..dca9c84ce6c 100644 --- a/editor/icons/ControlAlignTopCenter.svg +++ b/editor/icons/ControlAlignTopCenter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignTopLeft.svg b/editor/icons/ControlAlignTopLeft.svg index ad288647fb9..68a81738357 100644 --- a/editor/icons/ControlAlignTopLeft.svg +++ b/editor/icons/ControlAlignTopLeft.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignTopRight.svg b/editor/icons/ControlAlignTopRight.svg index d9955de7280..c862d205043 100644 --- a/editor/icons/ControlAlignTopRight.svg +++ b/editor/icons/ControlAlignTopRight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignTopWide.svg b/editor/icons/ControlAlignTopWide.svg index 2526b45ad9d..01d96907064 100644 --- a/editor/icons/ControlAlignTopWide.svg +++ b/editor/icons/ControlAlignTopWide.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlAlignWide.svg b/editor/icons/ControlAlignWide.svg index 5d1467cd9be..0099e04896e 100644 --- a/editor/icons/ControlAlignWide.svg +++ b/editor/icons/ControlAlignWide.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlHcenterWide.svg b/editor/icons/ControlHcenterWide.svg index 51c9aeb22d6..af3f9b495bf 100644 --- a/editor/icons/ControlHcenterWide.svg +++ b/editor/icons/ControlHcenterWide.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlLayout.svg b/editor/icons/ControlLayout.svg index e39e6b474cc..c4aa64113d3 100644 --- a/editor/icons/ControlLayout.svg +++ b/editor/icons/ControlLayout.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ControlVcenterWide.svg b/editor/icons/ControlVcenterWide.svg index 93bbc5748bc..decd1cbd127 100644 --- a/editor/icons/ControlVcenterWide.svg +++ b/editor/icons/ControlVcenterWide.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ConvexPolygonShape2D.svg b/editor/icons/ConvexPolygonShape2D.svg index 8d16523d939..dc2b0faf819 100644 --- a/editor/icons/ConvexPolygonShape2D.svg +++ b/editor/icons/ConvexPolygonShape2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ConvexPolygonShape3D.svg b/editor/icons/ConvexPolygonShape3D.svg index bfb9230586f..3478289ab1c 100644 --- a/editor/icons/ConvexPolygonShape3D.svg +++ b/editor/icons/ConvexPolygonShape3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CopyNodePath.svg b/editor/icons/CopyNodePath.svg index 2cabe0a44ef..1adec4ade33 100644 --- a/editor/icons/CopyNodePath.svg +++ b/editor/icons/CopyNodePath.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CreateNewSceneFrom.svg b/editor/icons/CreateNewSceneFrom.svg index ffeaa36bc4e..094a0aae39e 100644 --- a/editor/icons/CreateNewSceneFrom.svg +++ b/editor/icons/CreateNewSceneFrom.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CryptoKey.svg b/editor/icons/CryptoKey.svg index 45b53c815d9..c5d1af1d23a 100644 --- a/editor/icons/CryptoKey.svg +++ b/editor/icons/CryptoKey.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CubeMesh.svg b/editor/icons/CubeMesh.svg index aeb5324b1b8..d5408582482 100644 --- a/editor/icons/CubeMesh.svg +++ b/editor/icons/CubeMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Cubemap.svg b/editor/icons/Cubemap.svg index c9e6f1fa7d1..b3ec2bd3e7f 100644 --- a/editor/icons/Cubemap.svg +++ b/editor/icons/Cubemap.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CubemapArray.svg b/editor/icons/CubemapArray.svg index 350a64f9c25..c9d722dc527 100644 --- a/editor/icons/CubemapArray.svg +++ b/editor/icons/CubemapArray.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Curve.svg b/editor/icons/Curve.svg index 14895337c6a..34d537a46da 100644 --- a/editor/icons/Curve.svg +++ b/editor/icons/Curve.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Curve2D.svg b/editor/icons/Curve2D.svg index 23f585c7c5f..4470e660b38 100644 --- a/editor/icons/Curve2D.svg +++ b/editor/icons/Curve2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Curve3D.svg b/editor/icons/Curve3D.svg index f14c581ec37..f61b344966c 100644 --- a/editor/icons/Curve3D.svg +++ b/editor/icons/Curve3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveClose.svg b/editor/icons/CurveClose.svg index 7d7bae88c21..26e30cdb1cb 100644 --- a/editor/icons/CurveClose.svg +++ b/editor/icons/CurveClose.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveConstant.svg b/editor/icons/CurveConstant.svg index 713a3a982a7..656bdd75806 100644 --- a/editor/icons/CurveConstant.svg +++ b/editor/icons/CurveConstant.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveCreate.svg b/editor/icons/CurveCreate.svg index 43811f93f5b..962abd0b3fb 100644 --- a/editor/icons/CurveCreate.svg +++ b/editor/icons/CurveCreate.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveCurve.svg b/editor/icons/CurveCurve.svg index 60f965abc1e..35770543af7 100644 --- a/editor/icons/CurveCurve.svg +++ b/editor/icons/CurveCurve.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveDelete.svg b/editor/icons/CurveDelete.svg index afb545840f7..5bce6d0c1c6 100644 --- a/editor/icons/CurveDelete.svg +++ b/editor/icons/CurveDelete.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveEdit.svg b/editor/icons/CurveEdit.svg index 5d1d6560e1b..84b56fbccbe 100644 --- a/editor/icons/CurveEdit.svg +++ b/editor/icons/CurveEdit.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveIn.svg b/editor/icons/CurveIn.svg index b9e203dea06..2ad44dc6549 100644 --- a/editor/icons/CurveIn.svg +++ b/editor/icons/CurveIn.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveInOut.svg b/editor/icons/CurveInOut.svg index 6d3c57d4f56..292dac45733 100644 --- a/editor/icons/CurveInOut.svg +++ b/editor/icons/CurveInOut.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveLinear.svg b/editor/icons/CurveLinear.svg index 2256f493ce7..3c1fb2a0e22 100644 --- a/editor/icons/CurveLinear.svg +++ b/editor/icons/CurveLinear.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveOut.svg b/editor/icons/CurveOut.svg index 9b04df6b6cb..dfa9a26144f 100644 --- a/editor/icons/CurveOut.svg +++ b/editor/icons/CurveOut.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveOutIn.svg b/editor/icons/CurveOutIn.svg index 4a08d30966c..9a6463d0e9a 100644 --- a/editor/icons/CurveOutIn.svg +++ b/editor/icons/CurveOutIn.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CurveTexture.svg b/editor/icons/CurveTexture.svg index 05f9d627758..761fb9a45b6 100644 --- a/editor/icons/CurveTexture.svg +++ b/editor/icons/CurveTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CylinderMesh.svg b/editor/icons/CylinderMesh.svg index f204edc985f..85483aeeca0 100644 --- a/editor/icons/CylinderMesh.svg +++ b/editor/icons/CylinderMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/CylinderShape3D.svg b/editor/icons/CylinderShape3D.svg index f0aa5833d26..cbff4c88970 100644 --- a/editor/icons/CylinderShape3D.svg +++ b/editor/icons/CylinderShape3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DampedSpringJoint2D.svg b/editor/icons/DampedSpringJoint2D.svg index 9bd842bcc80..02a7033106e 100644 --- a/editor/icons/DampedSpringJoint2D.svg +++ b/editor/icons/DampedSpringJoint2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Debug.svg b/editor/icons/Debug.svg index 7490862c4aa..769fada054a 100644 --- a/editor/icons/Debug.svg +++ b/editor/icons/Debug.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DebugContinue.svg b/editor/icons/DebugContinue.svg index 69c64c4fd46..cf9e0724c25 100644 --- a/editor/icons/DebugContinue.svg +++ b/editor/icons/DebugContinue.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DebugNext.svg b/editor/icons/DebugNext.svg index 133be255e19..d510aff828f 100644 --- a/editor/icons/DebugNext.svg +++ b/editor/icons/DebugNext.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DebugSkipBreakpointsOff.svg b/editor/icons/DebugSkipBreakpointsOff.svg index f8923510bb2..e7228c599f7 100644 --- a/editor/icons/DebugSkipBreakpointsOff.svg +++ b/editor/icons/DebugSkipBreakpointsOff.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DebugSkipBreakpointsOn.svg b/editor/icons/DebugSkipBreakpointsOn.svg index d4a4b4c1380..0836954bbbf 100644 --- a/editor/icons/DebugSkipBreakpointsOn.svg +++ b/editor/icons/DebugSkipBreakpointsOn.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DebugStep.svg b/editor/icons/DebugStep.svg index c0356463fec..b26e9b7b257 100644 --- a/editor/icons/DebugStep.svg +++ b/editor/icons/DebugStep.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Decal.svg b/editor/icons/Decal.svg index fc7bfb8e2c5..2a61ceb0a02 100644 --- a/editor/icons/Decal.svg +++ b/editor/icons/Decal.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DefaultProjectIcon.svg b/editor/icons/DefaultProjectIcon.svg index 10ecbd019d5..f81ba4d3907 100644 --- a/editor/icons/DefaultProjectIcon.svg +++ b/editor/icons/DefaultProjectIcon.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DeleteSplit.svg b/editor/icons/DeleteSplit.svg index 7424de3b8ab..4ae590f78be 100644 --- a/editor/icons/DeleteSplit.svg +++ b/editor/icons/DeleteSplit.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Dictionary.svg b/editor/icons/Dictionary.svg index 668ef37a866..c8353988366 100644 --- a/editor/icons/Dictionary.svg +++ b/editor/icons/Dictionary.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DirectionalLight3D.svg b/editor/icons/DirectionalLight3D.svg index faac2be1344..ff033636be7 100644 --- a/editor/icons/DirectionalLight3D.svg +++ b/editor/icons/DirectionalLight3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DistractionFree.svg b/editor/icons/DistractionFree.svg index 8608b33f580..d4778930d2e 100644 --- a/editor/icons/DistractionFree.svg +++ b/editor/icons/DistractionFree.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Duplicate.svg b/editor/icons/Duplicate.svg index d506b7a8c7c..a7381f919ff 100644 --- a/editor/icons/Duplicate.svg +++ b/editor/icons/Duplicate.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DynamicFont.svg b/editor/icons/DynamicFont.svg index fe5eca2e35e..bbaa12ea1bb 100644 --- a/editor/icons/DynamicFont.svg +++ b/editor/icons/DynamicFont.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/DynamicFontData.svg b/editor/icons/DynamicFontData.svg index 56426dd33e9..7ee88582a52 100644 --- a/editor/icons/DynamicFontData.svg +++ b/editor/icons/DynamicFontData.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Edit.svg b/editor/icons/Edit.svg index bb7ffa2fce0..6fc7ae012db 100644 --- a/editor/icons/Edit.svg +++ b/editor/icons/Edit.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditBezier.svg b/editor/icons/EditBezier.svg index be9e2f22b8c..3feff790dcc 100644 --- a/editor/icons/EditBezier.svg +++ b/editor/icons/EditBezier.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditInternal.svg b/editor/icons/EditInternal.svg index 2a538102cef..7daf7ec29aa 100644 --- a/editor/icons/EditInternal.svg +++ b/editor/icons/EditInternal.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditKey.svg b/editor/icons/EditKey.svg index 883ddfda710..455c544e6a9 100644 --- a/editor/icons/EditKey.svg +++ b/editor/icons/EditKey.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditPivot.svg b/editor/icons/EditPivot.svg index ae303535b49..140fbd629fc 100644 --- a/editor/icons/EditPivot.svg +++ b/editor/icons/EditPivot.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditResource.svg b/editor/icons/EditResource.svg index e16ca003559..3b14428b903 100644 --- a/editor/icons/EditResource.svg +++ b/editor/icons/EditResource.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Editor3DHandle.svg b/editor/icons/Editor3DHandle.svg index 687a5b184dc..f63234f4105 100644 --- a/editor/icons/Editor3DHandle.svg +++ b/editor/icons/Editor3DHandle.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorControlAnchor.svg b/editor/icons/EditorControlAnchor.svg index 11e2bb51754..4574f5d7be3 100644 --- a/editor/icons/EditorControlAnchor.svg +++ b/editor/icons/EditorControlAnchor.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorCurveHandle.svg b/editor/icons/EditorCurveHandle.svg index c405ceab9da..ea69f4e4ccc 100644 --- a/editor/icons/EditorCurveHandle.svg +++ b/editor/icons/EditorCurveHandle.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorFileDialog.svg b/editor/icons/EditorFileDialog.svg index 95906234abf..c1e5479525a 100644 --- a/editor/icons/EditorFileDialog.svg +++ b/editor/icons/EditorFileDialog.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorHandle.svg b/editor/icons/EditorHandle.svg index 8b11e782dbf..a56e64bde37 100644 --- a/editor/icons/EditorHandle.svg +++ b/editor/icons/EditorHandle.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorHandleAdd.svg b/editor/icons/EditorHandleAdd.svg index bf3b604d5c2..82d3730d3cc 100644 --- a/editor/icons/EditorHandleAdd.svg +++ b/editor/icons/EditorHandleAdd.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorInternalHandle.svg b/editor/icons/EditorInternalHandle.svg index 244e6b5d6c7..dbb7bc289f4 100644 --- a/editor/icons/EditorInternalHandle.svg +++ b/editor/icons/EditorInternalHandle.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorPathSharpHandle.svg b/editor/icons/EditorPathSharpHandle.svg index db160dfeaec..328dc04677d 100644 --- a/editor/icons/EditorPathSharpHandle.svg +++ b/editor/icons/EditorPathSharpHandle.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorPathSmoothHandle.svg b/editor/icons/EditorPathSmoothHandle.svg index 34f3d290bd3..b498345d5a2 100644 --- a/editor/icons/EditorPathSmoothHandle.svg +++ b/editor/icons/EditorPathSmoothHandle.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorPivot.svg b/editor/icons/EditorPivot.svg index 8e00f605305..ecb5dd95b77 100644 --- a/editor/icons/EditorPivot.svg +++ b/editor/icons/EditorPivot.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorPlugin.svg b/editor/icons/EditorPlugin.svg index 72f2bd5c28d..7008762fa8c 100644 --- a/editor/icons/EditorPlugin.svg +++ b/editor/icons/EditorPlugin.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorPosition.svg b/editor/icons/EditorPosition.svg index 7b17fb5aa36..09f09feffce 100644 --- a/editor/icons/EditorPosition.svg +++ b/editor/icons/EditorPosition.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorPositionPrevious.svg b/editor/icons/EditorPositionPrevious.svg index 8c1d2992a57..ba69650d817 100644 --- a/editor/icons/EditorPositionPrevious.svg +++ b/editor/icons/EditorPositionPrevious.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/EditorPositionUnselected.svg b/editor/icons/EditorPositionUnselected.svg index b9a38ca371d..881fcab0790 100644 --- a/editor/icons/EditorPositionUnselected.svg +++ b/editor/icons/EditorPositionUnselected.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Enum.svg b/editor/icons/Enum.svg index efa3050e95f..45d2c7e24c2 100644 --- a/editor/icons/Enum.svg +++ b/editor/icons/Enum.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Environment.svg b/editor/icons/Environment.svg index ee29342942e..f42ae39bc09 100644 --- a/editor/icons/Environment.svg +++ b/editor/icons/Environment.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Error.svg b/editor/icons/Error.svg index 05e548068dd..4b306ae1cad 100644 --- a/editor/icons/Error.svg +++ b/editor/icons/Error.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ErrorSign.svg b/editor/icons/ErrorSign.svg index 96aace5c0cb..85a2cda3462 100644 --- a/editor/icons/ErrorSign.svg +++ b/editor/icons/ErrorSign.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ErrorWarning.svg b/editor/icons/ErrorWarning.svg index 72b5037e50a..53b7be2763f 100644 --- a/editor/icons/ErrorWarning.svg +++ b/editor/icons/ErrorWarning.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ExpandBottomDock.svg b/editor/icons/ExpandBottomDock.svg index 09cc3b9b07a..636d4f8b833 100644 --- a/editor/icons/ExpandBottomDock.svg +++ b/editor/icons/ExpandBottomDock.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Favorites.svg b/editor/icons/Favorites.svg index 79e0c8475e2..67f62f26d50 100644 --- a/editor/icons/Favorites.svg +++ b/editor/icons/Favorites.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/File.svg b/editor/icons/File.svg index 22d330fd56b..d3c01ca45ed 100644 --- a/editor/icons/File.svg +++ b/editor/icons/File.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FileBigThumb.svg b/editor/icons/FileBigThumb.svg index 50900ab6842..214bd1d56bb 100644 --- a/editor/icons/FileBigThumb.svg +++ b/editor/icons/FileBigThumb.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FileBroken.svg b/editor/icons/FileBroken.svg index af79f02c124..2f5099aa29c 100644 --- a/editor/icons/FileBroken.svg +++ b/editor/icons/FileBroken.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FileBrokenBigThumb.svg b/editor/icons/FileBrokenBigThumb.svg index 08dee26f1c7..effaa0afe95 100644 --- a/editor/icons/FileBrokenBigThumb.svg +++ b/editor/icons/FileBrokenBigThumb.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FileDead.svg b/editor/icons/FileDead.svg index c40aa1b9a44..f8df831a22b 100644 --- a/editor/icons/FileDead.svg +++ b/editor/icons/FileDead.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FileDeadBigThumb.svg b/editor/icons/FileDeadBigThumb.svg index 79369873a66..ca4578e7b72 100644 --- a/editor/icons/FileDeadBigThumb.svg +++ b/editor/icons/FileDeadBigThumb.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FileDeadMediumThumb.svg b/editor/icons/FileDeadMediumThumb.svg index 62496daaaeb..2d1808b90a7 100644 --- a/editor/icons/FileDeadMediumThumb.svg +++ b/editor/icons/FileDeadMediumThumb.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FileDialog.svg b/editor/icons/FileDialog.svg index 95906234abf..c1e5479525a 100644 --- a/editor/icons/FileDialog.svg +++ b/editor/icons/FileDialog.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FileList.svg b/editor/icons/FileList.svg index e47c8b18cbd..3ba49153506 100644 --- a/editor/icons/FileList.svg +++ b/editor/icons/FileList.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FileMediumThumb.svg b/editor/icons/FileMediumThumb.svg index 4c7d78b58ea..0c2b467bf9d 100644 --- a/editor/icons/FileMediumThumb.svg +++ b/editor/icons/FileMediumThumb.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FileThumbnail.svg b/editor/icons/FileThumbnail.svg index 571335a9352..5cf0ddc3f8d 100644 --- a/editor/icons/FileThumbnail.svg +++ b/editor/icons/FileThumbnail.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Filesystem.svg b/editor/icons/Filesystem.svg index da6fa2ad604..a5e1c2f8a91 100644 --- a/editor/icons/Filesystem.svg +++ b/editor/icons/Filesystem.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FixedMaterial.svg b/editor/icons/FixedMaterial.svg index 903691689b9..2c30ecac244 100644 --- a/editor/icons/FixedMaterial.svg +++ b/editor/icons/FixedMaterial.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FixedSpatialMaterial.svg b/editor/icons/FixedSpatialMaterial.svg index ba1e2510886..67012085604 100644 --- a/editor/icons/FixedSpatialMaterial.svg +++ b/editor/icons/FixedSpatialMaterial.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Folder.svg b/editor/icons/Folder.svg index 00ff7a95e94..c2def257ea0 100644 --- a/editor/icons/Folder.svg +++ b/editor/icons/Folder.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FolderBigThumb.svg b/editor/icons/FolderBigThumb.svg index a620d17b8f4..db7d9aa550c 100644 --- a/editor/icons/FolderBigThumb.svg +++ b/editor/icons/FolderBigThumb.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/FolderMediumThumb.svg b/editor/icons/FolderMediumThumb.svg index 431650aff0e..4e9f72e760d 100644 --- a/editor/icons/FolderMediumThumb.svg +++ b/editor/icons/FolderMediumThumb.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Font.svg b/editor/icons/Font.svg index 4b71b59d2e5..2c8d7cb43ed 100644 --- a/editor/icons/Font.svg +++ b/editor/icons/Font.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Forward.svg b/editor/icons/Forward.svg index aecd4b362c1..6eab4884bc5 100644 --- a/editor/icons/Forward.svg +++ b/editor/icons/Forward.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GIProbe.svg b/editor/icons/GIProbe.svg index 5a5bfd3c5a9..b66c937317b 100644 --- a/editor/icons/GIProbe.svg +++ b/editor/icons/GIProbe.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GIProbeData.svg b/editor/icons/GIProbeData.svg index d4765be30f8..5975115f4c6 100644 --- a/editor/icons/GIProbeData.svg +++ b/editor/icons/GIProbeData.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GPUParticles2D.svg b/editor/icons/GPUParticles2D.svg index 7151194e368..b291bcda95c 100644 --- a/editor/icons/GPUParticles2D.svg +++ b/editor/icons/GPUParticles2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GPUParticles3D.svg b/editor/icons/GPUParticles3D.svg index f1378e3f8c4..25377f9f5ff 100644 --- a/editor/icons/GPUParticles3D.svg +++ b/editor/icons/GPUParticles3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Generic6DOFJoint3D.svg b/editor/icons/Generic6DOFJoint3D.svg index 30d892e7a1d..63df5fc507f 100644 --- a/editor/icons/Generic6DOFJoint3D.svg +++ b/editor/icons/Generic6DOFJoint3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Gizmo3DSamplePlayer.svg b/editor/icons/Gizmo3DSamplePlayer.svg index ee471124dc6..d174bcfe072 100644 --- a/editor/icons/Gizmo3DSamplePlayer.svg +++ b/editor/icons/Gizmo3DSamplePlayer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GizmoBakedLightmap.svg b/editor/icons/GizmoBakedLightmap.svg index 9568f7ff254..a7828615fd0 100644 --- a/editor/icons/GizmoBakedLightmap.svg +++ b/editor/icons/GizmoBakedLightmap.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GizmoCPUParticles3D.svg b/editor/icons/GizmoCPUParticles3D.svg index d4e86d9c429..785cd81625a 100644 --- a/editor/icons/GizmoCPUParticles3D.svg +++ b/editor/icons/GizmoCPUParticles3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GizmoCamera.svg b/editor/icons/GizmoCamera.svg index f28efb813e1..1fa21861970 100644 --- a/editor/icons/GizmoCamera.svg +++ b/editor/icons/GizmoCamera.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GizmoDirectionalLight.svg b/editor/icons/GizmoDirectionalLight.svg index dc2d6bf82d6..041a6947735 100644 --- a/editor/icons/GizmoDirectionalLight.svg +++ b/editor/icons/GizmoDirectionalLight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GizmoGIProbe.svg b/editor/icons/GizmoGIProbe.svg index c792dc5a280..ff3cafa1f58 100644 --- a/editor/icons/GizmoGIProbe.svg +++ b/editor/icons/GizmoGIProbe.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GizmoGPUParticles3D.svg b/editor/icons/GizmoGPUParticles3D.svg index 1c5d8c5f2dc..126ece6d4da 100644 --- a/editor/icons/GizmoGPUParticles3D.svg +++ b/editor/icons/GizmoGPUParticles3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GizmoLight.svg b/editor/icons/GizmoLight.svg index 1e47082a0a0..ab828c800ef 100644 --- a/editor/icons/GizmoLight.svg +++ b/editor/icons/GizmoLight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GizmoListener.svg b/editor/icons/GizmoListener.svg index 9e28c7730f8..9d3ddf8b857 100644 --- a/editor/icons/GizmoListener.svg +++ b/editor/icons/GizmoListener.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GizmoReflectionProbe.svg b/editor/icons/GizmoReflectionProbe.svg index 82136821c77..60895a18af7 100644 --- a/editor/icons/GizmoReflectionProbe.svg +++ b/editor/icons/GizmoReflectionProbe.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GizmoSpotLight.svg b/editor/icons/GizmoSpotLight.svg index 23a8364679c..18696c2cdc2 100644 --- a/editor/icons/GizmoSpotLight.svg +++ b/editor/icons/GizmoSpotLight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Godot.svg b/editor/icons/Godot.svg index 8ca9fdcabd5..4887425f4cf 100644 --- a/editor/icons/Godot.svg +++ b/editor/icons/Godot.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Gradient.svg b/editor/icons/Gradient.svg index b67a9e6f8a9..47dde294fcf 100644 --- a/editor/icons/Gradient.svg +++ b/editor/icons/Gradient.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GradientTexture.svg b/editor/icons/GradientTexture.svg index 1388c141bd2..ec4c4546e13 100644 --- a/editor/icons/GradientTexture.svg +++ b/editor/icons/GradientTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GraphEdit.svg b/editor/icons/GraphEdit.svg index 7ab72452607..b879259ffc2 100644 --- a/editor/icons/GraphEdit.svg +++ b/editor/icons/GraphEdit.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GraphNode.svg b/editor/icons/GraphNode.svg index c8d4fda9103..bcd7bfc1c1b 100644 --- a/editor/icons/GraphNode.svg +++ b/editor/icons/GraphNode.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Grid.svg b/editor/icons/Grid.svg index 869bc649fe2..8353ad7d196 100644 --- a/editor/icons/Grid.svg +++ b/editor/icons/Grid.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GridContainer.svg b/editor/icons/GridContainer.svg index 9fffd8b3423..fb6207d94b4 100644 --- a/editor/icons/GridContainer.svg +++ b/editor/icons/GridContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GrooveJoint2D.svg b/editor/icons/GrooveJoint2D.svg index a2c7b741adf..41cf64ad660 100644 --- a/editor/icons/GrooveJoint2D.svg +++ b/editor/icons/GrooveJoint2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Group.svg b/editor/icons/Group.svg index 7e0b2f36753..19601795d8c 100644 --- a/editor/icons/Group.svg +++ b/editor/icons/Group.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GroupViewport.svg b/editor/icons/GroupViewport.svg index 768c87e18df..1c22046ba19 100644 --- a/editor/icons/GroupViewport.svg +++ b/editor/icons/GroupViewport.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Groups.svg b/editor/icons/Groups.svg index 5c8bd73f0fc..80dc6b74457 100644 --- a/editor/icons/Groups.svg +++ b/editor/icons/Groups.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiChecked.svg b/editor/icons/GuiChecked.svg index 8d00eca8d35..9bdf5dcb195 100644 --- a/editor/icons/GuiChecked.svg +++ b/editor/icons/GuiChecked.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiClose.svg b/editor/icons/GuiClose.svg index 35960618772..d8ffa12cfa8 100644 --- a/editor/icons/GuiClose.svg +++ b/editor/icons/GuiClose.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiCloseCustomizable.svg b/editor/icons/GuiCloseCustomizable.svg index 35960618772..d8ffa12cfa8 100644 --- a/editor/icons/GuiCloseCustomizable.svg +++ b/editor/icons/GuiCloseCustomizable.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiDropdown.svg b/editor/icons/GuiDropdown.svg index 3ed9466f4a2..ef37cda6ff1 100644 --- a/editor/icons/GuiDropdown.svg +++ b/editor/icons/GuiDropdown.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiEllipsis.svg b/editor/icons/GuiEllipsis.svg index 4d530d635e7..d96929725ca 100644 --- a/editor/icons/GuiEllipsis.svg +++ b/editor/icons/GuiEllipsis.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiGraphNodePort.svg b/editor/icons/GuiGraphNodePort.svg index 2023a30ead6..f87f361825d 100644 --- a/editor/icons/GuiGraphNodePort.svg +++ b/editor/icons/GuiGraphNodePort.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiHTick.svg b/editor/icons/GuiHTick.svg index 01fecf5d120..a8a2fe58f6b 100644 --- a/editor/icons/GuiHTick.svg +++ b/editor/icons/GuiHTick.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiHsplitter.svg b/editor/icons/GuiHsplitter.svg index f94a81cb1ea..6d4505685e3 100644 --- a/editor/icons/GuiHsplitter.svg +++ b/editor/icons/GuiHsplitter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiMiniCheckerboard.svg b/editor/icons/GuiMiniCheckerboard.svg index dc6c7e37d19..0ae6a855bdf 100644 --- a/editor/icons/GuiMiniCheckerboard.svg +++ b/editor/icons/GuiMiniCheckerboard.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiOptionArrow.svg b/editor/icons/GuiOptionArrow.svg index 28435e08c39..832793068fd 100644 --- a/editor/icons/GuiOptionArrow.svg +++ b/editor/icons/GuiOptionArrow.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiProgressBar.svg b/editor/icons/GuiProgressBar.svg index a7a57adaa72..b1ce44c645a 100644 --- a/editor/icons/GuiProgressBar.svg +++ b/editor/icons/GuiProgressBar.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiProgressFill.svg b/editor/icons/GuiProgressFill.svg index a75bf93edd0..f8070cadc44 100644 --- a/editor/icons/GuiProgressFill.svg +++ b/editor/icons/GuiProgressFill.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiRadioChecked.svg b/editor/icons/GuiRadioChecked.svg index 447b57f8aec..771337116db 100644 --- a/editor/icons/GuiRadioChecked.svg +++ b/editor/icons/GuiRadioChecked.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiRadioUnchecked.svg b/editor/icons/GuiRadioUnchecked.svg index 1e8117bd10c..6a21d316bef 100644 --- a/editor/icons/GuiRadioUnchecked.svg +++ b/editor/icons/GuiRadioUnchecked.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiResizer.svg b/editor/icons/GuiResizer.svg index 545a1c96121..c7bee36b494 100644 --- a/editor/icons/GuiResizer.svg +++ b/editor/icons/GuiResizer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiScrollArrowLeft.svg b/editor/icons/GuiScrollArrowLeft.svg index a118f04e176..50cca02ac13 100644 --- a/editor/icons/GuiScrollArrowLeft.svg +++ b/editor/icons/GuiScrollArrowLeft.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiScrollArrowLeftHl.svg b/editor/icons/GuiScrollArrowLeftHl.svg index 046356f18b9..6adb4931b56 100644 --- a/editor/icons/GuiScrollArrowLeftHl.svg +++ b/editor/icons/GuiScrollArrowLeftHl.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiScrollArrowRight.svg b/editor/icons/GuiScrollArrowRight.svg index 4e0a8b53276..fea26043c1a 100644 --- a/editor/icons/GuiScrollArrowRight.svg +++ b/editor/icons/GuiScrollArrowRight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiScrollArrowRightHl.svg b/editor/icons/GuiScrollArrowRightHl.svg index 4224ca8de48..8a90890a0f2 100644 --- a/editor/icons/GuiScrollArrowRightHl.svg +++ b/editor/icons/GuiScrollArrowRightHl.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiScrollBg.svg b/editor/icons/GuiScrollBg.svg index 263b42ea613..dd5c60e534b 100644 --- a/editor/icons/GuiScrollBg.svg +++ b/editor/icons/GuiScrollBg.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiScrollGrabber.svg b/editor/icons/GuiScrollGrabber.svg index 9f6e9f2e25a..16edfb567c2 100644 --- a/editor/icons/GuiScrollGrabber.svg +++ b/editor/icons/GuiScrollGrabber.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiScrollGrabberHl.svg b/editor/icons/GuiScrollGrabberHl.svg index bf5bce69348..cec53330f01 100644 --- a/editor/icons/GuiScrollGrabberHl.svg +++ b/editor/icons/GuiScrollGrabberHl.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiScrollGrabberPressed.svg b/editor/icons/GuiScrollGrabberPressed.svg index da26032474f..13f8427d35c 100644 --- a/editor/icons/GuiScrollGrabberPressed.svg +++ b/editor/icons/GuiScrollGrabberPressed.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiSliderGrabber.svg b/editor/icons/GuiSliderGrabber.svg index dd751ead80a..ddd1b1d9b81 100644 --- a/editor/icons/GuiSliderGrabber.svg +++ b/editor/icons/GuiSliderGrabber.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiSliderGrabberHl.svg b/editor/icons/GuiSliderGrabberHl.svg index 90d62934ece..3af977ae4ac 100644 --- a/editor/icons/GuiSliderGrabberHl.svg +++ b/editor/icons/GuiSliderGrabberHl.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiSpace.svg b/editor/icons/GuiSpace.svg index b43e97b6e13..db4b1745e2c 100644 --- a/editor/icons/GuiSpace.svg +++ b/editor/icons/GuiSpace.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiSpinboxUpdown.svg b/editor/icons/GuiSpinboxUpdown.svg index a6776728e34..5bfa6a1c09d 100644 --- a/editor/icons/GuiSpinboxUpdown.svg +++ b/editor/icons/GuiSpinboxUpdown.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiTab.svg b/editor/icons/GuiTab.svg index 8451ebe5c0c..b6ba1bb3dde 100644 --- a/editor/icons/GuiTab.svg +++ b/editor/icons/GuiTab.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiTabMenu.svg b/editor/icons/GuiTabMenu.svg index 55e98143a69..8bb6bbc012e 100644 --- a/editor/icons/GuiTabMenu.svg +++ b/editor/icons/GuiTabMenu.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiTabMenuHl.svg b/editor/icons/GuiTabMenuHl.svg index e4c5b7bf1e5..b20bd8097fa 100644 --- a/editor/icons/GuiTabMenuHl.svg +++ b/editor/icons/GuiTabMenuHl.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiToggleOff.svg b/editor/icons/GuiToggleOff.svg index 46f13d198db..928b55b2011 100644 --- a/editor/icons/GuiToggleOff.svg +++ b/editor/icons/GuiToggleOff.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiToggleOn.svg b/editor/icons/GuiToggleOn.svg index 0316680daa7..a79a8290b1e 100644 --- a/editor/icons/GuiToggleOn.svg +++ b/editor/icons/GuiToggleOn.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiTreeArrowDown.svg b/editor/icons/GuiTreeArrowDown.svg index fd2d900711b..7b320152ff6 100644 --- a/editor/icons/GuiTreeArrowDown.svg +++ b/editor/icons/GuiTreeArrowDown.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiTreeArrowRight.svg b/editor/icons/GuiTreeArrowRight.svg index e20c92e2e70..cf1b5dac7cb 100644 --- a/editor/icons/GuiTreeArrowRight.svg +++ b/editor/icons/GuiTreeArrowRight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiTreeArrowUp.svg b/editor/icons/GuiTreeArrowUp.svg index 464363a8b1c..f5399bc7f9b 100644 --- a/editor/icons/GuiTreeArrowUp.svg +++ b/editor/icons/GuiTreeArrowUp.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiTreeUpdown.svg b/editor/icons/GuiTreeUpdown.svg index 66716845df3..c6b9014e827 100644 --- a/editor/icons/GuiTreeUpdown.svg +++ b/editor/icons/GuiTreeUpdown.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiUnchecked.svg b/editor/icons/GuiUnchecked.svg index 9575422df38..74d6106dc90 100644 --- a/editor/icons/GuiUnchecked.svg +++ b/editor/icons/GuiUnchecked.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiVTick.svg b/editor/icons/GuiVTick.svg index 4205237952f..c0af1df8fb4 100644 --- a/editor/icons/GuiVTick.svg +++ b/editor/icons/GuiVTick.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiViewportHdiagsplitter.svg b/editor/icons/GuiViewportHdiagsplitter.svg index b1705582dc3..ceba2c9cfb0 100644 --- a/editor/icons/GuiViewportHdiagsplitter.svg +++ b/editor/icons/GuiViewportHdiagsplitter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiViewportVdiagsplitter.svg b/editor/icons/GuiViewportVdiagsplitter.svg index 0817529ff14..af52e1ec62f 100644 --- a/editor/icons/GuiViewportVdiagsplitter.svg +++ b/editor/icons/GuiViewportVdiagsplitter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiViewportVhsplitter.svg b/editor/icons/GuiViewportVhsplitter.svg index a11fbd1b4c3..b53a23f62ae 100644 --- a/editor/icons/GuiViewportVhsplitter.svg +++ b/editor/icons/GuiViewportVhsplitter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiVisibilityHidden.svg b/editor/icons/GuiVisibilityHidden.svg index 1d1e61d1bb2..6152fe8acf7 100644 --- a/editor/icons/GuiVisibilityHidden.svg +++ b/editor/icons/GuiVisibilityHidden.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiVisibilityVisible.svg b/editor/icons/GuiVisibilityVisible.svg index 2e56f57ed8f..32eaea633bc 100644 --- a/editor/icons/GuiVisibilityVisible.svg +++ b/editor/icons/GuiVisibilityVisible.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiVisibilityXray.svg b/editor/icons/GuiVisibilityXray.svg index 241ff3e7e58..109911df451 100644 --- a/editor/icons/GuiVisibilityXray.svg +++ b/editor/icons/GuiVisibilityXray.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiVsplitBg.svg b/editor/icons/GuiVsplitBg.svg index fa572c797e2..9844fc2018b 100644 --- a/editor/icons/GuiVsplitBg.svg +++ b/editor/icons/GuiVsplitBg.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/GuiVsplitter.svg b/editor/icons/GuiVsplitter.svg index 8629801713d..add4301a4b6 100644 --- a/editor/icons/GuiVsplitter.svg +++ b/editor/icons/GuiVsplitter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/HBoxContainer.svg b/editor/icons/HBoxContainer.svg index 0ddbaf5a2e5..791fca0ebc9 100644 --- a/editor/icons/HBoxContainer.svg +++ b/editor/icons/HBoxContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/HScrollBar.svg b/editor/icons/HScrollBar.svg index 039ebdf0c1d..5828ccb388a 100644 --- a/editor/icons/HScrollBar.svg +++ b/editor/icons/HScrollBar.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/HSeparator.svg b/editor/icons/HSeparator.svg index 762992acb83..d786767be87 100644 --- a/editor/icons/HSeparator.svg +++ b/editor/icons/HSeparator.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/HSlider.svg b/editor/icons/HSlider.svg index 20fbf0d00b3..0ab453bbce3 100644 --- a/editor/icons/HSlider.svg +++ b/editor/icons/HSlider.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/HSplitContainer.svg b/editor/icons/HSplitContainer.svg index ae7c05ee615..796e331ef57 100644 --- a/editor/icons/HSplitContainer.svg +++ b/editor/icons/HSplitContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/HTTPRequest.svg b/editor/icons/HTTPRequest.svg index c79af15a431..1a2187fe15c 100644 --- a/editor/icons/HTTPRequest.svg +++ b/editor/icons/HTTPRequest.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Headphones.svg b/editor/icons/Headphones.svg index 82ef7acb297..76f92d58a75 100644 --- a/editor/icons/Headphones.svg +++ b/editor/icons/Headphones.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/HeightMapShape3D.svg b/editor/icons/HeightMapShape3D.svg index 2e0bf53565a..0ffff968505 100644 --- a/editor/icons/HeightMapShape3D.svg +++ b/editor/icons/HeightMapShape3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Help.svg b/editor/icons/Help.svg index d993c95982a..65f3100164e 100644 --- a/editor/icons/Help.svg +++ b/editor/icons/Help.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/HelpSearch.svg b/editor/icons/HelpSearch.svg index 4a82ba23c76..89c8735432f 100644 --- a/editor/icons/HelpSearch.svg +++ b/editor/icons/HelpSearch.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/HingeJoint3D.svg b/editor/icons/HingeJoint3D.svg index 21b3e29cb59..ca97169d82b 100644 --- a/editor/icons/HingeJoint3D.svg +++ b/editor/icons/HingeJoint3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/History.svg b/editor/icons/History.svg index 48eed7b0c8c..45bc5650885 100644 --- a/editor/icons/History.svg +++ b/editor/icons/History.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Hsize.svg b/editor/icons/Hsize.svg index 075bab1050d..c7b62e58c89 100644 --- a/editor/icons/Hsize.svg +++ b/editor/icons/Hsize.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Image.svg b/editor/icons/Image.svg index f3beda898e1..ddf97ec59e4 100644 --- a/editor/icons/Image.svg +++ b/editor/icons/Image.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ImageTexture.svg b/editor/icons/ImageTexture.svg index 6e9905881bb..013e847db30 100644 --- a/editor/icons/ImageTexture.svg +++ b/editor/icons/ImageTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ImmediateGeometry3D.svg b/editor/icons/ImmediateGeometry3D.svg index 5679d5906fd..876d752cedf 100644 --- a/editor/icons/ImmediateGeometry3D.svg +++ b/editor/icons/ImmediateGeometry3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ImportCheck.svg b/editor/icons/ImportCheck.svg index b2b967f37a4..0e6b0a7105b 100644 --- a/editor/icons/ImportCheck.svg +++ b/editor/icons/ImportCheck.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ImportFail.svg b/editor/icons/ImportFail.svg index 6c81f88d9f3..6e34dfc4057 100644 --- a/editor/icons/ImportFail.svg +++ b/editor/icons/ImportFail.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/InformationSign.svg b/editor/icons/InformationSign.svg index a99be1b0420..8cf1ac78e3c 100644 --- a/editor/icons/InformationSign.svg +++ b/editor/icons/InformationSign.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/InsertAfter.svg b/editor/icons/InsertAfter.svg index cab00048ac2..b75df837bde 100644 --- a/editor/icons/InsertAfter.svg +++ b/editor/icons/InsertAfter.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/InsertBefore.svg b/editor/icons/InsertBefore.svg index 366be3a1e60..44c876fc767 100644 --- a/editor/icons/InsertBefore.svg +++ b/editor/icons/InsertBefore.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Instance.svg b/editor/icons/Instance.svg index 8fc985bb51e..f0b8a04c7d3 100644 --- a/editor/icons/Instance.svg +++ b/editor/icons/Instance.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/InstanceOptions.svg b/editor/icons/InstanceOptions.svg index ca9a5bcc877..c9ff474fee8 100644 --- a/editor/icons/InstanceOptions.svg +++ b/editor/icons/InstanceOptions.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/InterpCubic.svg b/editor/icons/InterpCubic.svg index c2dd7db08c3..ad2ed51ee17 100644 --- a/editor/icons/InterpCubic.svg +++ b/editor/icons/InterpCubic.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/InterpLinear.svg b/editor/icons/InterpLinear.svg index 368be15315d..241a82fc8f5 100644 --- a/editor/icons/InterpLinear.svg +++ b/editor/icons/InterpLinear.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/InterpRaw.svg b/editor/icons/InterpRaw.svg index 1c6ae0062ac..6344155c4b2 100644 --- a/editor/icons/InterpRaw.svg +++ b/editor/icons/InterpRaw.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/InterpWrapClamp.svg b/editor/icons/InterpWrapClamp.svg index 9634dc8a07b..6ba8e785009 100644 --- a/editor/icons/InterpWrapClamp.svg +++ b/editor/icons/InterpWrapClamp.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/InterpWrapLoop.svg b/editor/icons/InterpWrapLoop.svg index 6fbb4356c8d..57670f97ce8 100644 --- a/editor/icons/InterpWrapLoop.svg +++ b/editor/icons/InterpWrapLoop.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/InverseKinematics.svg b/editor/icons/InverseKinematics.svg index a98c989cccd..e4a076fbbdf 100644 --- a/editor/icons/InverseKinematics.svg +++ b/editor/icons/InverseKinematics.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Issue.svg b/editor/icons/Issue.svg index ddaaf414408..457d070d89d 100644 --- a/editor/icons/Issue.svg +++ b/editor/icons/Issue.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ItemList.svg b/editor/icons/ItemList.svg index 311ed08a446..fb98a706a9a 100644 --- a/editor/icons/ItemList.svg +++ b/editor/icons/ItemList.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/JoyAxis.svg b/editor/icons/JoyAxis.svg index cb7b5cdf8fd..1ab65f0af09 100644 --- a/editor/icons/JoyAxis.svg +++ b/editor/icons/JoyAxis.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/JoyButton.svg b/editor/icons/JoyButton.svg index 9f4fbfdf2d4..080d91ad53a 100644 --- a/editor/icons/JoyButton.svg +++ b/editor/icons/JoyButton.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Joypad.svg b/editor/icons/Joypad.svg index 8cb5de0c0e2..3c6bbf2980d 100644 --- a/editor/icons/Joypad.svg +++ b/editor/icons/Joypad.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Key.svg b/editor/icons/Key.svg index d134735c537..544ebe5a479 100644 --- a/editor/icons/Key.svg +++ b/editor/icons/Key.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyAnimation.svg b/editor/icons/KeyAnimation.svg index 6db513ca26d..5afd5bdb704 100644 --- a/editor/icons/KeyAnimation.svg +++ b/editor/icons/KeyAnimation.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyAudio.svg b/editor/icons/KeyAudio.svg index 75576885ec5..e1a93529a6c 100644 --- a/editor/icons/KeyAudio.svg +++ b/editor/icons/KeyAudio.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyBezier.svg b/editor/icons/KeyBezier.svg index dc5800fd5aa..cd41f953b15 100644 --- a/editor/icons/KeyBezier.svg +++ b/editor/icons/KeyBezier.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyBezierHandle.svg b/editor/icons/KeyBezierHandle.svg index 9f00f613045..a2b58118e34 100644 --- a/editor/icons/KeyBezierHandle.svg +++ b/editor/icons/KeyBezierHandle.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyBezierPoint.svg b/editor/icons/KeyBezierPoint.svg index 0edb55cda13..266da4c2002 100644 --- a/editor/icons/KeyBezierPoint.svg +++ b/editor/icons/KeyBezierPoint.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyBezierSelected.svg b/editor/icons/KeyBezierSelected.svg index 9e50e2bdf1d..e8536e97b40 100644 --- a/editor/icons/KeyBezierSelected.svg +++ b/editor/icons/KeyBezierSelected.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyCall.svg b/editor/icons/KeyCall.svg index 6cc442c391a..dd47272d4f5 100644 --- a/editor/icons/KeyCall.svg +++ b/editor/icons/KeyCall.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyHover.svg b/editor/icons/KeyHover.svg index 417621716b9..b67d7ff78db 100644 --- a/editor/icons/KeyHover.svg +++ b/editor/icons/KeyHover.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyInvalid.svg b/editor/icons/KeyInvalid.svg index 8ac9445b31d..4a04c1ee659 100644 --- a/editor/icons/KeyInvalid.svg +++ b/editor/icons/KeyInvalid.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyNext.svg b/editor/icons/KeyNext.svg index 2d064e7e862..a2b616072b7 100644 --- a/editor/icons/KeyNext.svg +++ b/editor/icons/KeyNext.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyPosition.svg b/editor/icons/KeyPosition.svg index d152b76e8d6..260a6f582f7 100644 --- a/editor/icons/KeyPosition.svg +++ b/editor/icons/KeyPosition.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyRotation.svg b/editor/icons/KeyRotation.svg index 0d3577eac49..284a8354679 100644 --- a/editor/icons/KeyRotation.svg +++ b/editor/icons/KeyRotation.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyScale.svg b/editor/icons/KeyScale.svg index a1214db62ed..84805191f2c 100644 --- a/editor/icons/KeyScale.svg +++ b/editor/icons/KeyScale.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeySelected.svg b/editor/icons/KeySelected.svg index 6594aec6eec..32f900bdd6b 100644 --- a/editor/icons/KeySelected.svg +++ b/editor/icons/KeySelected.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyValue.svg b/editor/icons/KeyValue.svg index 8a4787d6ed6..2a112e210aa 100644 --- a/editor/icons/KeyValue.svg +++ b/editor/icons/KeyValue.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyXform.svg b/editor/icons/KeyXform.svg index 4a567075a72..12f27d32a98 100644 --- a/editor/icons/KeyXform.svg +++ b/editor/icons/KeyXform.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Keyboard.svg b/editor/icons/Keyboard.svg index c76e88e5e3a..9c372bc08d9 100644 --- a/editor/icons/Keyboard.svg +++ b/editor/icons/Keyboard.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KeyboardPhysical.svg b/editor/icons/KeyboardPhysical.svg index 2bd35bc78e0..0f20315fcad 100644 --- a/editor/icons/KeyboardPhysical.svg +++ b/editor/icons/KeyboardPhysical.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KinematicBody2D.svg b/editor/icons/KinematicBody2D.svg index be9dfa2d271..70faad6a49b 100644 --- a/editor/icons/KinematicBody2D.svg +++ b/editor/icons/KinematicBody2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/KinematicBody3D.svg b/editor/icons/KinematicBody3D.svg index 16078fbdeca..06e9275ec16 100644 --- a/editor/icons/KinematicBody3D.svg +++ b/editor/icons/KinematicBody3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Label.svg b/editor/icons/Label.svg index 24de3985019..bfb1c903f3b 100644 --- a/editor/icons/Label.svg +++ b/editor/icons/Label.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/LargeTexture.svg b/editor/icons/LargeTexture.svg index 15920bf3d37..137a761e1d7 100644 --- a/editor/icons/LargeTexture.svg +++ b/editor/icons/LargeTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Light2D.svg b/editor/icons/Light2D.svg index 87cfb291494..d660b82c347 100644 --- a/editor/icons/Light2D.svg +++ b/editor/icons/Light2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/LightOccluder2D.svg b/editor/icons/LightOccluder2D.svg index 2905f9baddc..8c5bb89218c 100644 --- a/editor/icons/LightOccluder2D.svg +++ b/editor/icons/LightOccluder2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/LightmapProbe.svg b/editor/icons/LightmapProbe.svg index 0972220fdab..bc790d50c19 100644 --- a/editor/icons/LightmapProbe.svg +++ b/editor/icons/LightmapProbe.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Line2D.svg b/editor/icons/Line2D.svg index 9728262e50c..a0f9d1e33ce 100644 --- a/editor/icons/Line2D.svg +++ b/editor/icons/Line2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/LineEdit.svg b/editor/icons/LineEdit.svg index 4df7a3b2485..54e3190259f 100644 --- a/editor/icons/LineEdit.svg +++ b/editor/icons/LineEdit.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/LineShape2D.svg b/editor/icons/LineShape2D.svg index 758c0fbef25..f1dbe97c6f7 100644 --- a/editor/icons/LineShape2D.svg +++ b/editor/icons/LineShape2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/LinkButton.svg b/editor/icons/LinkButton.svg index bf7f7657eb6..3a99d241c30 100644 --- a/editor/icons/LinkButton.svg +++ b/editor/icons/LinkButton.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ListSelect.svg b/editor/icons/ListSelect.svg index 42feb1922bd..9e2bf381d30 100644 --- a/editor/icons/ListSelect.svg +++ b/editor/icons/ListSelect.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Listener3D.svg b/editor/icons/Listener3D.svg index 96eaeaffa91..7afbdccd43a 100644 --- a/editor/icons/Listener3D.svg +++ b/editor/icons/Listener3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Load.svg b/editor/icons/Load.svg index 7ee6ae2a2d9..a049454ebba 100644 --- a/editor/icons/Load.svg +++ b/editor/icons/Load.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Lock.svg b/editor/icons/Lock.svg index 4136dad5577..1988b9b3313 100644 --- a/editor/icons/Lock.svg +++ b/editor/icons/Lock.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/LockViewport.svg b/editor/icons/LockViewport.svg index 99c066055d3..c8b8a57be69 100644 --- a/editor/icons/LockViewport.svg +++ b/editor/icons/LockViewport.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Logo.svg b/editor/icons/Logo.svg index f5379c48d4c..d7aef39cc94 100644 --- a/editor/icons/Logo.svg +++ b/editor/icons/Logo.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Loop.svg b/editor/icons/Loop.svg index bbb8dadc064..7fd8561bc43 100644 --- a/editor/icons/Loop.svg +++ b/editor/icons/Loop.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/LoopInterpolation.svg b/editor/icons/LoopInterpolation.svg index 052a34ab360..5e3f9190433 100644 --- a/editor/icons/LoopInterpolation.svg +++ b/editor/icons/LoopInterpolation.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MainPlay.svg b/editor/icons/MainPlay.svg index 5fd62b94535..5a1d195530f 100644 --- a/editor/icons/MainPlay.svg +++ b/editor/icons/MainPlay.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MarginContainer.svg b/editor/icons/MarginContainer.svg index f11b415c06d..82e72c0da92 100644 --- a/editor/icons/MarginContainer.svg +++ b/editor/icons/MarginContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MatchCase.svg b/editor/icons/MatchCase.svg index 1b348f3d46d..0787b0aa56b 100644 --- a/editor/icons/MatchCase.svg +++ b/editor/icons/MatchCase.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MaterialPreviewCube.svg b/editor/icons/MaterialPreviewCube.svg index 7992ce05c1f..29baa9f0303 100644 --- a/editor/icons/MaterialPreviewCube.svg +++ b/editor/icons/MaterialPreviewCube.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MaterialPreviewCubeOff.svg b/editor/icons/MaterialPreviewCubeOff.svg index 6dfe169eaee..14564c558ea 100644 --- a/editor/icons/MaterialPreviewCubeOff.svg +++ b/editor/icons/MaterialPreviewCubeOff.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MaterialPreviewLight1.svg b/editor/icons/MaterialPreviewLight1.svg index 3003793013c..8e6954b6abf 100644 --- a/editor/icons/MaterialPreviewLight1.svg +++ b/editor/icons/MaterialPreviewLight1.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MaterialPreviewLight1Off.svg b/editor/icons/MaterialPreviewLight1Off.svg index 6948e3d77e2..2f84612e82f 100644 --- a/editor/icons/MaterialPreviewLight1Off.svg +++ b/editor/icons/MaterialPreviewLight1Off.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MaterialPreviewLight2.svg b/editor/icons/MaterialPreviewLight2.svg index 08c05379e4d..cbc5204b3a4 100644 --- a/editor/icons/MaterialPreviewLight2.svg +++ b/editor/icons/MaterialPreviewLight2.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MaterialPreviewLight2Off.svg b/editor/icons/MaterialPreviewLight2Off.svg index cc48927ecee..d6ec546e3f1 100644 --- a/editor/icons/MaterialPreviewLight2Off.svg +++ b/editor/icons/MaterialPreviewLight2Off.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MaterialPreviewSphere.svg b/editor/icons/MaterialPreviewSphere.svg index 4f4ef67e202..22c9eef0fb8 100644 --- a/editor/icons/MaterialPreviewSphere.svg +++ b/editor/icons/MaterialPreviewSphere.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MaterialPreviewSphereOff.svg b/editor/icons/MaterialPreviewSphereOff.svg index f702b4fd271..52bb095210c 100644 --- a/editor/icons/MaterialPreviewSphereOff.svg +++ b/editor/icons/MaterialPreviewSphereOff.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MemberConstant.svg b/editor/icons/MemberConstant.svg index ec82749cf47..72a6a8363d6 100644 --- a/editor/icons/MemberConstant.svg +++ b/editor/icons/MemberConstant.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MemberMethod.svg b/editor/icons/MemberMethod.svg index ea5c64482ca..073525a5aa8 100644 --- a/editor/icons/MemberMethod.svg +++ b/editor/icons/MemberMethod.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MemberProperty.svg b/editor/icons/MemberProperty.svg index 4b6b7ab5df7..475de2be0bc 100644 --- a/editor/icons/MemberProperty.svg +++ b/editor/icons/MemberProperty.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MemberSignal.svg b/editor/icons/MemberSignal.svg index 5159e4acd75..07ff88f7c90 100644 --- a/editor/icons/MemberSignal.svg +++ b/editor/icons/MemberSignal.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MemberTheme.svg b/editor/icons/MemberTheme.svg index 7aaaf2b808f..ad770afafa8 100644 --- a/editor/icons/MemberTheme.svg +++ b/editor/icons/MemberTheme.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MenuButton.svg b/editor/icons/MenuButton.svg index 8c23927783e..ca129bacede 100644 --- a/editor/icons/MenuButton.svg +++ b/editor/icons/MenuButton.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Mesh.svg b/editor/icons/Mesh.svg index 0fb9e74584a..c02d5d0613b 100644 --- a/editor/icons/Mesh.svg +++ b/editor/icons/Mesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MeshInstance2D.svg b/editor/icons/MeshInstance2D.svg index a173d027714..b8df0768d2c 100644 --- a/editor/icons/MeshInstance2D.svg +++ b/editor/icons/MeshInstance2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MeshInstance3D.svg b/editor/icons/MeshInstance3D.svg index 68344b7dbdc..aa0cf7740b3 100644 --- a/editor/icons/MeshInstance3D.svg +++ b/editor/icons/MeshInstance3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MeshLibrary.svg b/editor/icons/MeshLibrary.svg index 13ae8fece76..6e824af1771 100644 --- a/editor/icons/MeshLibrary.svg +++ b/editor/icons/MeshLibrary.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MeshTexture.svg b/editor/icons/MeshTexture.svg index b3beff05c0d..988882c960d 100644 --- a/editor/icons/MeshTexture.svg +++ b/editor/icons/MeshTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MiniObject.svg b/editor/icons/MiniObject.svg index 0b34a9fdbbd..b4a336923d1 100644 --- a/editor/icons/MiniObject.svg +++ b/editor/icons/MiniObject.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MirrorX.svg b/editor/icons/MirrorX.svg index 445a4e058d9..fa668986ac6 100644 --- a/editor/icons/MirrorX.svg +++ b/editor/icons/MirrorX.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MirrorY.svg b/editor/icons/MirrorY.svg index ebfcf8cabd5..bb4e4d35430 100644 --- a/editor/icons/MirrorY.svg +++ b/editor/icons/MirrorY.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Mouse.svg b/editor/icons/Mouse.svg index 571288675a6..217512085e9 100644 --- a/editor/icons/Mouse.svg +++ b/editor/icons/Mouse.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MoveDown.svg b/editor/icons/MoveDown.svg index ba0c5d80baa..3c2d771cd5b 100644 --- a/editor/icons/MoveDown.svg +++ b/editor/icons/MoveDown.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MoveLeft.svg b/editor/icons/MoveLeft.svg index f4ad280ae16..8f96ee00605 100644 --- a/editor/icons/MoveLeft.svg +++ b/editor/icons/MoveLeft.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MovePoint.svg b/editor/icons/MovePoint.svg index a8c11e7cb3e..03b15e47b52 100644 --- a/editor/icons/MovePoint.svg +++ b/editor/icons/MovePoint.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MoveRight.svg b/editor/icons/MoveRight.svg index 4d1c3b1145e..ee8d1b45a41 100644 --- a/editor/icons/MoveRight.svg +++ b/editor/icons/MoveRight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MoveUp.svg b/editor/icons/MoveUp.svg index 87c7834597a..f1302b29846 100644 --- a/editor/icons/MoveUp.svg +++ b/editor/icons/MoveUp.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MultiEdit.svg b/editor/icons/MultiEdit.svg index 9a5b3237b29..d1409e16ca7 100644 --- a/editor/icons/MultiEdit.svg +++ b/editor/icons/MultiEdit.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MultiLine.svg b/editor/icons/MultiLine.svg index dd79bb50d8a..634086fd51f 100644 --- a/editor/icons/MultiLine.svg +++ b/editor/icons/MultiLine.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MultiMesh.svg b/editor/icons/MultiMesh.svg index d317129ef4f..6ee638db4c9 100644 --- a/editor/icons/MultiMesh.svg +++ b/editor/icons/MultiMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MultiMeshInstance2D.svg b/editor/icons/MultiMeshInstance2D.svg index 6c54a63ae2d..07c72aeed12 100644 --- a/editor/icons/MultiMeshInstance2D.svg +++ b/editor/icons/MultiMeshInstance2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/MultiMeshInstance3D.svg b/editor/icons/MultiMeshInstance3D.svg index c114a725dba..61d728c4be6 100644 --- a/editor/icons/MultiMeshInstance3D.svg +++ b/editor/icons/MultiMeshInstance3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Navigation2D.svg b/editor/icons/Navigation2D.svg index 79dc532aee0..6725400e92c 100644 --- a/editor/icons/Navigation2D.svg +++ b/editor/icons/Navigation2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Navigation3D.svg b/editor/icons/Navigation3D.svg index d5a8f8618b1..74c8e204a34 100644 --- a/editor/icons/Navigation3D.svg +++ b/editor/icons/Navigation3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NavigationAgent2D.svg b/editor/icons/NavigationAgent2D.svg index 8ded0cea556..28760be4a16 100644 --- a/editor/icons/NavigationAgent2D.svg +++ b/editor/icons/NavigationAgent2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NavigationAgent3D.svg b/editor/icons/NavigationAgent3D.svg index 44c991d44c9..da76adaa991 100644 --- a/editor/icons/NavigationAgent3D.svg +++ b/editor/icons/NavigationAgent3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NavigationMesh.svg b/editor/icons/NavigationMesh.svg index 9bc4a00d53f..45bc51ac31d 100644 --- a/editor/icons/NavigationMesh.svg +++ b/editor/icons/NavigationMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NavigationObstacle2D.svg b/editor/icons/NavigationObstacle2D.svg index 8a9c43ddad8..fab41e2f43e 100644 --- a/editor/icons/NavigationObstacle2D.svg +++ b/editor/icons/NavigationObstacle2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NavigationObstacle3D.svg b/editor/icons/NavigationObstacle3D.svg index 42481a6067c..10b09107cd8 100644 --- a/editor/icons/NavigationObstacle3D.svg +++ b/editor/icons/NavigationObstacle3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NavigationPolygon.svg b/editor/icons/NavigationPolygon.svg index df2ddb07f6f..d0fc822f425 100644 --- a/editor/icons/NavigationPolygon.svg +++ b/editor/icons/NavigationPolygon.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NavigationRegion2D.svg b/editor/icons/NavigationRegion2D.svg index f22e9f64f71..3ec09384178 100644 --- a/editor/icons/NavigationRegion2D.svg +++ b/editor/icons/NavigationRegion2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NavigationRegion3D.svg b/editor/icons/NavigationRegion3D.svg index 61f43497b4f..7a899dbc80a 100644 --- a/editor/icons/NavigationRegion3D.svg +++ b/editor/icons/NavigationRegion3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/New.svg b/editor/icons/New.svg index a3199e3fba0..efc897cb4f9 100644 --- a/editor/icons/New.svg +++ b/editor/icons/New.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NewRoot.svg b/editor/icons/NewRoot.svg index d32777d507b..061ff6043a0 100644 --- a/editor/icons/NewRoot.svg +++ b/editor/icons/NewRoot.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Nil.svg b/editor/icons/Nil.svg index 04a29abaaad..e4fbb903898 100644 --- a/editor/icons/Nil.svg +++ b/editor/icons/Nil.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NinePatchRect.svg b/editor/icons/NinePatchRect.svg index c5b04ec049b..d857b71a46c 100644 --- a/editor/icons/NinePatchRect.svg +++ b/editor/icons/NinePatchRect.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Node.svg b/editor/icons/Node.svg index 93f0ce80b16..199f94e890a 100644 --- a/editor/icons/Node.svg +++ b/editor/icons/Node.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Node2D.svg b/editor/icons/Node2D.svg index 5ca5754daab..7f27e0695fa 100644 --- a/editor/icons/Node2D.svg +++ b/editor/icons/Node2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Node3D.svg b/editor/icons/Node3D.svg index 6a469dde13f..56f6ed55421 100644 --- a/editor/icons/Node3D.svg +++ b/editor/icons/Node3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NodePath.svg b/editor/icons/NodePath.svg index 580283b75a3..3ecb830bec6 100644 --- a/editor/icons/NodePath.svg +++ b/editor/icons/NodePath.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NodeWarning.svg b/editor/icons/NodeWarning.svg index 587a49412e3..f40d539a39c 100644 --- a/editor/icons/NodeWarning.svg +++ b/editor/icons/NodeWarning.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/NonFavorite.svg b/editor/icons/NonFavorite.svg index eb0ebf052c3..29bdc8bdfd4 100644 --- a/editor/icons/NonFavorite.svg +++ b/editor/icons/NonFavorite.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Object.svg b/editor/icons/Object.svg index c3d1b47538a..b1fa85d6085 100644 --- a/editor/icons/Object.svg +++ b/editor/icons/Object.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/OccluderPolygon2D.svg b/editor/icons/OccluderPolygon2D.svg index 19244f35caa..cdceb164417 100644 --- a/editor/icons/OccluderPolygon2D.svg +++ b/editor/icons/OccluderPolygon2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/OmniLight3D.svg b/editor/icons/OmniLight3D.svg index 6fa0454e8c8..06b3786ebef 100644 --- a/editor/icons/OmniLight3D.svg +++ b/editor/icons/OmniLight3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Onion.svg b/editor/icons/Onion.svg index ff1376c3160..ec4137eab9d 100644 --- a/editor/icons/Onion.svg +++ b/editor/icons/Onion.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/OptionButton.svg b/editor/icons/OptionButton.svg index 6b4402481d2..50e6fae2180 100644 --- a/editor/icons/OptionButton.svg +++ b/editor/icons/OptionButton.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/OverbrightIndicator.svg b/editor/icons/OverbrightIndicator.svg index 9e6f53b7272..70894361cef 100644 --- a/editor/icons/OverbrightIndicator.svg +++ b/editor/icons/OverbrightIndicator.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Override.svg b/editor/icons/Override.svg index 2d8a1fb3091..cfa9313d8e0 100644 --- a/editor/icons/Override.svg +++ b/editor/icons/Override.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedByteArray.svg b/editor/icons/PackedByteArray.svg index 5409a47bc43..95534e44105 100644 --- a/editor/icons/PackedByteArray.svg +++ b/editor/icons/PackedByteArray.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedColorArray.svg b/editor/icons/PackedColorArray.svg index 7a312d0e91c..206819ffb6e 100644 --- a/editor/icons/PackedColorArray.svg +++ b/editor/icons/PackedColorArray.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedDataContainer.svg b/editor/icons/PackedDataContainer.svg index 18bad53f661..dd08ee4cc0e 100644 --- a/editor/icons/PackedDataContainer.svg +++ b/editor/icons/PackedDataContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedFloat32Array.svg b/editor/icons/PackedFloat32Array.svg index 734f40cd056..503b0e7b6f6 100644 --- a/editor/icons/PackedFloat32Array.svg +++ b/editor/icons/PackedFloat32Array.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedFloat64Array.svg b/editor/icons/PackedFloat64Array.svg index 734f40cd056..503b0e7b6f6 100644 --- a/editor/icons/PackedFloat64Array.svg +++ b/editor/icons/PackedFloat64Array.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedInt32Array.svg b/editor/icons/PackedInt32Array.svg index a664b2d5fd8..a1dc417c119 100644 --- a/editor/icons/PackedInt32Array.svg +++ b/editor/icons/PackedInt32Array.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedInt64Array.svg b/editor/icons/PackedInt64Array.svg index a664b2d5fd8..a1dc417c119 100644 --- a/editor/icons/PackedInt64Array.svg +++ b/editor/icons/PackedInt64Array.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedScene.svg b/editor/icons/PackedScene.svg index 9c1d88db1c4..6294989a57a 100644 --- a/editor/icons/PackedScene.svg +++ b/editor/icons/PackedScene.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedStringArray.svg b/editor/icons/PackedStringArray.svg index 7e66f5f5e57..e9285e21926 100644 --- a/editor/icons/PackedStringArray.svg +++ b/editor/icons/PackedStringArray.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedVector2Array.svg b/editor/icons/PackedVector2Array.svg index 170512eb39c..a5c89210457 100644 --- a/editor/icons/PackedVector2Array.svg +++ b/editor/icons/PackedVector2Array.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PackedVector3Array.svg b/editor/icons/PackedVector3Array.svg index cd3578182f6..e1de83908d7 100644 --- a/editor/icons/PackedVector3Array.svg +++ b/editor/icons/PackedVector3Array.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PaintVertex.svg b/editor/icons/PaintVertex.svg index cab3716bf5b..5a13e4b7d0f 100644 --- a/editor/icons/PaintVertex.svg +++ b/editor/icons/PaintVertex.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Panel.svg b/editor/icons/Panel.svg index 10a67bae7ee..f82822c5a16 100644 --- a/editor/icons/Panel.svg +++ b/editor/icons/Panel.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PanelContainer.svg b/editor/icons/PanelContainer.svg index 08c5492f7e8..017941ba364 100644 --- a/editor/icons/PanelContainer.svg +++ b/editor/icons/PanelContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Panels1.svg b/editor/icons/Panels1.svg index 850aad2cffd..a6fc65a6a56 100644 --- a/editor/icons/Panels1.svg +++ b/editor/icons/Panels1.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Panels2.svg b/editor/icons/Panels2.svg index 5f3fc6cf48d..620a2c41c3d 100644 --- a/editor/icons/Panels2.svg +++ b/editor/icons/Panels2.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Panels2Alt.svg b/editor/icons/Panels2Alt.svg index edee3a660f7..8d76c785522 100644 --- a/editor/icons/Panels2Alt.svg +++ b/editor/icons/Panels2Alt.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Panels3.svg b/editor/icons/Panels3.svg index 3ddcb5e2efa..1155b5b217b 100644 --- a/editor/icons/Panels3.svg +++ b/editor/icons/Panels3.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Panels3Alt.svg b/editor/icons/Panels3Alt.svg index 0f36a24da8c..3ab3b191063 100644 --- a/editor/icons/Panels3Alt.svg +++ b/editor/icons/Panels3Alt.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Panels4.svg b/editor/icons/Panels4.svg index 7b2189087ff..3b12eae80ad 100644 --- a/editor/icons/Panels4.svg +++ b/editor/icons/Panels4.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PanoramaSkyMaterial.svg b/editor/icons/PanoramaSkyMaterial.svg index 9f40ffb63cf..33ffc203519 100644 --- a/editor/icons/PanoramaSkyMaterial.svg +++ b/editor/icons/PanoramaSkyMaterial.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ParallaxBackground.svg b/editor/icons/ParallaxBackground.svg index 09e6a7d19d9..9d13f3a65d8 100644 --- a/editor/icons/ParallaxBackground.svg +++ b/editor/icons/ParallaxBackground.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ParallaxLayer.svg b/editor/icons/ParallaxLayer.svg index d8a5ef5e1f6..64bf68f6047 100644 --- a/editor/icons/ParallaxLayer.svg +++ b/editor/icons/ParallaxLayer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ParticlesMaterial.svg b/editor/icons/ParticlesMaterial.svg index af45f9888ad..f9a25530efb 100644 --- a/editor/icons/ParticlesMaterial.svg +++ b/editor/icons/ParticlesMaterial.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Path2D.svg b/editor/icons/Path2D.svg index 8aa0453b88b..5633dcf923e 100644 --- a/editor/icons/Path2D.svg +++ b/editor/icons/Path2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Path3D.svg b/editor/icons/Path3D.svg index cde9a069030..913fe8abf6d 100644 --- a/editor/icons/Path3D.svg +++ b/editor/icons/Path3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PathFollow2D.svg b/editor/icons/PathFollow2D.svg index 20a32f2d831..ac0f17240eb 100644 --- a/editor/icons/PathFollow2D.svg +++ b/editor/icons/PathFollow2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PathFollow3D.svg b/editor/icons/PathFollow3D.svg index 8e904ab5a50..c9bd7009dc0 100644 --- a/editor/icons/PathFollow3D.svg +++ b/editor/icons/PathFollow3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Pause.svg b/editor/icons/Pause.svg index 14c99713830..724a84f458c 100644 --- a/editor/icons/Pause.svg +++ b/editor/icons/Pause.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PhysicalBone3D.svg b/editor/icons/PhysicalBone3D.svg index 0a34eb6e482..55df1f1e19e 100644 --- a/editor/icons/PhysicalBone3D.svg +++ b/editor/icons/PhysicalBone3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PhysicalSkyMaterial.svg b/editor/icons/PhysicalSkyMaterial.svg index 5831cb2c636..68bf2785a40 100644 --- a/editor/icons/PhysicalSkyMaterial.svg +++ b/editor/icons/PhysicalSkyMaterial.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Pin.svg b/editor/icons/Pin.svg index 85cd815b647..708eab93332 100644 --- a/editor/icons/Pin.svg +++ b/editor/icons/Pin.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PinJoint2D.svg b/editor/icons/PinJoint2D.svg index f1dcafb9234..4e701df7fb3 100644 --- a/editor/icons/PinJoint2D.svg +++ b/editor/icons/PinJoint2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PinJoint3D.svg b/editor/icons/PinJoint3D.svg index 147553d3162..12f388b2f76 100644 --- a/editor/icons/PinJoint3D.svg +++ b/editor/icons/PinJoint3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PinPressed.svg b/editor/icons/PinPressed.svg index 85cd815b647..708eab93332 100644 --- a/editor/icons/PinPressed.svg +++ b/editor/icons/PinPressed.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Plane.svg b/editor/icons/Plane.svg index 3a943af0b3d..edaa86e7727 100644 --- a/editor/icons/Plane.svg +++ b/editor/icons/Plane.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PlaneMesh.svg b/editor/icons/PlaneMesh.svg index 2512fc90311..3514c1e3e37 100644 --- a/editor/icons/PlaneMesh.svg +++ b/editor/icons/PlaneMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Play.svg b/editor/icons/Play.svg index 4c16215a683..0be543d1ae5 100644 --- a/editor/icons/Play.svg +++ b/editor/icons/Play.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PlayBackwards.svg b/editor/icons/PlayBackwards.svg index c98f15ea50b..846a6aec199 100644 --- a/editor/icons/PlayBackwards.svg +++ b/editor/icons/PlayBackwards.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PlayCustom.svg b/editor/icons/PlayCustom.svg index e19a8e70288..118545ec628 100644 --- a/editor/icons/PlayCustom.svg +++ b/editor/icons/PlayCustom.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PlayOverlay.svg b/editor/icons/PlayOverlay.svg index 1fb2da65969..9b3299d1b94 100644 --- a/editor/icons/PlayOverlay.svg +++ b/editor/icons/PlayOverlay.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PlayScene.svg b/editor/icons/PlayScene.svg index 5e5097fd663..7f8e40fa63b 100644 --- a/editor/icons/PlayScene.svg +++ b/editor/icons/PlayScene.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PlayStart.svg b/editor/icons/PlayStart.svg index 2ade7371e0c..afd12515607 100644 --- a/editor/icons/PlayStart.svg +++ b/editor/icons/PlayStart.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PlayStartBackwards.svg b/editor/icons/PlayStartBackwards.svg index 195f9a646e8..7d1624a397a 100644 --- a/editor/icons/PlayStartBackwards.svg +++ b/editor/icons/PlayStartBackwards.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PlayTravel.svg b/editor/icons/PlayTravel.svg index d772476e156..be4ac1fb7ec 100644 --- a/editor/icons/PlayTravel.svg +++ b/editor/icons/PlayTravel.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PluginScript.svg b/editor/icons/PluginScript.svg index 0d080c132e4..3fb34879fe3 100644 --- a/editor/icons/PluginScript.svg +++ b/editor/icons/PluginScript.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PointMesh.svg b/editor/icons/PointMesh.svg index 0504b7ff011..184200c5284 100644 --- a/editor/icons/PointMesh.svg +++ b/editor/icons/PointMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Polygon2D.svg b/editor/icons/Polygon2D.svg index 6767992581a..b74ba3e3421 100644 --- a/editor/icons/Polygon2D.svg +++ b/editor/icons/Polygon2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PolygonPathFinder.svg b/editor/icons/PolygonPathFinder.svg index b41067d08a9..f400037d808 100644 --- a/editor/icons/PolygonPathFinder.svg +++ b/editor/icons/PolygonPathFinder.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Popup.svg b/editor/icons/Popup.svg index a497b7a7fcc..c25cc5b256f 100644 --- a/editor/icons/Popup.svg +++ b/editor/icons/Popup.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PopupMenu.svg b/editor/icons/PopupMenu.svg index ebf62208e02..dd729e472bd 100644 --- a/editor/icons/PopupMenu.svg +++ b/editor/icons/PopupMenu.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PopupPanel.svg b/editor/icons/PopupPanel.svg index b45a3c9c3c8..075cad678e1 100644 --- a/editor/icons/PopupPanel.svg +++ b/editor/icons/PopupPanel.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Portal.svg b/editor/icons/Portal.svg index 99d626e2f47..e52e0473a68 100644 --- a/editor/icons/Portal.svg +++ b/editor/icons/Portal.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Position2D.svg b/editor/icons/Position2D.svg index 22d4ab05caa..d5e7ff96216 100644 --- a/editor/icons/Position2D.svg +++ b/editor/icons/Position2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Position3D.svg b/editor/icons/Position3D.svg index 0401942d694..da7dfb010a6 100644 --- a/editor/icons/Position3D.svg +++ b/editor/icons/Position3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/PrismMesh.svg b/editor/icons/PrismMesh.svg index c391652adde..bc5f4fb0b10 100644 --- a/editor/icons/PrismMesh.svg +++ b/editor/icons/PrismMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ProceduralSkyMaterial.svg b/editor/icons/ProceduralSkyMaterial.svg index f7a39446710..9aa362d8da9 100644 --- a/editor/icons/ProceduralSkyMaterial.svg +++ b/editor/icons/ProceduralSkyMaterial.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Progress1.svg b/editor/icons/Progress1.svg index 01c2f8f334e..07505ddd67c 100644 --- a/editor/icons/Progress1.svg +++ b/editor/icons/Progress1.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Progress2.svg b/editor/icons/Progress2.svg index a18ceb03815..0a48f7d3f56 100644 --- a/editor/icons/Progress2.svg +++ b/editor/icons/Progress2.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Progress3.svg b/editor/icons/Progress3.svg index 55b01dad83f..a7f0f9c973c 100644 --- a/editor/icons/Progress3.svg +++ b/editor/icons/Progress3.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Progress4.svg b/editor/icons/Progress4.svg index a038bbec70f..171920915eb 100644 --- a/editor/icons/Progress4.svg +++ b/editor/icons/Progress4.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Progress5.svg b/editor/icons/Progress5.svg index 64144978afc..7289b7b8fe8 100644 --- a/editor/icons/Progress5.svg +++ b/editor/icons/Progress5.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Progress6.svg b/editor/icons/Progress6.svg index 83b18062636..3deba6d48cf 100644 --- a/editor/icons/Progress6.svg +++ b/editor/icons/Progress6.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Progress7.svg b/editor/icons/Progress7.svg index 77d4321a149..546155dc59e 100644 --- a/editor/icons/Progress7.svg +++ b/editor/icons/Progress7.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Progress8.svg b/editor/icons/Progress8.svg index ee76ba4499b..b56ffcb7271 100644 --- a/editor/icons/Progress8.svg +++ b/editor/icons/Progress8.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ProgressBar.svg b/editor/icons/ProgressBar.svg index 70f99e3bbb7..2200cb8ea7f 100644 --- a/editor/icons/ProgressBar.svg +++ b/editor/icons/ProgressBar.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ProjectIconLoading.svg b/editor/icons/ProjectIconLoading.svg index 3802b67654e..5e189a97b04 100644 --- a/editor/icons/ProjectIconLoading.svg +++ b/editor/icons/ProjectIconLoading.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ProximityGroup3D.svg b/editor/icons/ProximityGroup3D.svg index 7df1cc90932..703abc64860 100644 --- a/editor/icons/ProximityGroup3D.svg +++ b/editor/icons/ProximityGroup3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ProxyTexture.svg b/editor/icons/ProxyTexture.svg index 0c19363cb48..526f21c379b 100644 --- a/editor/icons/ProxyTexture.svg +++ b/editor/icons/ProxyTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Quad.svg b/editor/icons/Quad.svg index 4657e0b0bd3..cf07be1d2fd 100644 --- a/editor/icons/Quad.svg +++ b/editor/icons/Quad.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/QuadMesh.svg b/editor/icons/QuadMesh.svg index de0bd3e127b..bee0b2853f4 100644 --- a/editor/icons/QuadMesh.svg +++ b/editor/icons/QuadMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Quat.svg b/editor/icons/Quat.svg index 8702a3041a0..66020e52438 100644 --- a/editor/icons/Quat.svg +++ b/editor/icons/Quat.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RID.svg b/editor/icons/RID.svg index a6ace54d121..9198e421b1b 100644 --- a/editor/icons/RID.svg +++ b/editor/icons/RID.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RayCast2D.svg b/editor/icons/RayCast2D.svg index 02faaa51c99..645da1e2dae 100644 --- a/editor/icons/RayCast2D.svg +++ b/editor/icons/RayCast2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RayCast3D.svg b/editor/icons/RayCast3D.svg index e782b27e9fe..4500551463b 100644 --- a/editor/icons/RayCast3D.svg +++ b/editor/icons/RayCast3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RayShape2D.svg b/editor/icons/RayShape2D.svg index 109c254fc39..aa8cee1210c 100644 --- a/editor/icons/RayShape2D.svg +++ b/editor/icons/RayShape2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RayShape3D.svg b/editor/icons/RayShape3D.svg index 37c22067405..44d32fe83bb 100644 --- a/editor/icons/RayShape3D.svg +++ b/editor/icons/RayShape3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Rayito.svg b/editor/icons/Rayito.svg index 4fd6a2827b5..1db71c22311 100644 --- a/editor/icons/Rayito.svg +++ b/editor/icons/Rayito.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Rect2.svg b/editor/icons/Rect2.svg index 25feb52cabb..18dbdf3a12f 100644 --- a/editor/icons/Rect2.svg +++ b/editor/icons/Rect2.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RectangleShape2D.svg b/editor/icons/RectangleShape2D.svg index 437547ece31..f0d6c54dc9a 100644 --- a/editor/icons/RectangleShape2D.svg +++ b/editor/icons/RectangleShape2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ReferenceRect.svg b/editor/icons/ReferenceRect.svg index 2fd530d584e..449ca250e33 100644 --- a/editor/icons/ReferenceRect.svg +++ b/editor/icons/ReferenceRect.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ReflectionProbe.svg b/editor/icons/ReflectionProbe.svg index 6bf9cc90136..ff9263d7981 100644 --- a/editor/icons/ReflectionProbe.svg +++ b/editor/icons/ReflectionProbe.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RegionEdit.svg b/editor/icons/RegionEdit.svg index 8443c0e454b..0bee107e336 100644 --- a/editor/icons/RegionEdit.svg +++ b/editor/icons/RegionEdit.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Reload.svg b/editor/icons/Reload.svg index 223a7253323..1200df1dde1 100644 --- a/editor/icons/Reload.svg +++ b/editor/icons/Reload.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ReloadSmall.svg b/editor/icons/ReloadSmall.svg index ce707b645a8..9418a57ab1d 100644 --- a/editor/icons/ReloadSmall.svg +++ b/editor/icons/ReloadSmall.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RemoteTransform2D.svg b/editor/icons/RemoteTransform2D.svg index 51c9e084df7..81a3946d9f8 100644 --- a/editor/icons/RemoteTransform2D.svg +++ b/editor/icons/RemoteTransform2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RemoteTransform3D.svg b/editor/icons/RemoteTransform3D.svg index 2bdf8cd858d..d55e4e4224c 100644 --- a/editor/icons/RemoteTransform3D.svg +++ b/editor/icons/RemoteTransform3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Remove.svg b/editor/icons/Remove.svg index 9372eb08b5d..5bcdf8e569e 100644 --- a/editor/icons/Remove.svg +++ b/editor/icons/Remove.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RemoveInternal.svg b/editor/icons/RemoveInternal.svg index 0a7e06e6cd3..1cb5db1c524 100644 --- a/editor/icons/RemoveInternal.svg +++ b/editor/icons/RemoveInternal.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Rename.svg b/editor/icons/Rename.svg index 01923e3a0a3..853f68b2e1a 100644 --- a/editor/icons/Rename.svg +++ b/editor/icons/Rename.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Reparent.svg b/editor/icons/Reparent.svg index 39b79cd3a16..04efb08b990 100644 --- a/editor/icons/Reparent.svg +++ b/editor/icons/Reparent.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ReparentToNewNode.svg b/editor/icons/ReparentToNewNode.svg index 37fbee848c0..cca610d2b16 100644 --- a/editor/icons/ReparentToNewNode.svg +++ b/editor/icons/ReparentToNewNode.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ResourcePreloader.svg b/editor/icons/ResourcePreloader.svg index 417e63b604f..7a788bbdcb9 100644 --- a/editor/icons/ResourcePreloader.svg +++ b/editor/icons/ResourcePreloader.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RichTextEffect.svg b/editor/icons/RichTextEffect.svg index afe08685bd3..f1d3f168ff3 100644 --- a/editor/icons/RichTextEffect.svg +++ b/editor/icons/RichTextEffect.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RichTextLabel.svg b/editor/icons/RichTextLabel.svg index 3f4b33707cc..7283d3dd62b 100644 --- a/editor/icons/RichTextLabel.svg +++ b/editor/icons/RichTextLabel.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RigidBody2D.svg b/editor/icons/RigidBody2D.svg index bb97fa650b5..9dc626b94e7 100644 --- a/editor/icons/RigidBody2D.svg +++ b/editor/icons/RigidBody2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RigidBody3D.svg b/editor/icons/RigidBody3D.svg index 5d766f7c3db..476bf3966a2 100644 --- a/editor/icons/RigidBody3D.svg +++ b/editor/icons/RigidBody3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Room.svg b/editor/icons/Room.svg index 799be9f99ac..6491d0409c2 100644 --- a/editor/icons/Room.svg +++ b/editor/icons/Room.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RoomBounds.svg b/editor/icons/RoomBounds.svg index ad90944ac61..66901d7895a 100644 --- a/editor/icons/RoomBounds.svg +++ b/editor/icons/RoomBounds.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RootMotionView.svg b/editor/icons/RootMotionView.svg index 4d334203830..f2d23e5b9fc 100644 --- a/editor/icons/RootMotionView.svg +++ b/editor/icons/RootMotionView.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Rotate0.svg b/editor/icons/Rotate0.svg index 96174ca93b6..670a6f09c3e 100644 --- a/editor/icons/Rotate0.svg +++ b/editor/icons/Rotate0.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Rotate180.svg b/editor/icons/Rotate180.svg index 11415e1e195..fdd0882fbaa 100644 --- a/editor/icons/Rotate180.svg +++ b/editor/icons/Rotate180.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Rotate270.svg b/editor/icons/Rotate270.svg index be26bc4337b..7ffd43d1471 100644 --- a/editor/icons/Rotate270.svg +++ b/editor/icons/Rotate270.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Rotate90.svg b/editor/icons/Rotate90.svg index d46c56a1fc1..ef4d631df65 100644 --- a/editor/icons/Rotate90.svg +++ b/editor/icons/Rotate90.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RotateLeft.svg b/editor/icons/RotateLeft.svg index 223a7253323..1200df1dde1 100644 --- a/editor/icons/RotateLeft.svg +++ b/editor/icons/RotateLeft.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/RotateRight.svg b/editor/icons/RotateRight.svg index 2b66bae9982..d69e6a7705b 100644 --- a/editor/icons/RotateRight.svg +++ b/editor/icons/RotateRight.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Ruler.svg b/editor/icons/Ruler.svg index dbe02102ecf..2f026ed365b 100644 --- a/editor/icons/Ruler.svg +++ b/editor/icons/Ruler.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SampleLibrary.svg b/editor/icons/SampleLibrary.svg index e83a1a37788..962f7b94130 100644 --- a/editor/icons/SampleLibrary.svg +++ b/editor/icons/SampleLibrary.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Save.svg b/editor/icons/Save.svg index be5d3ef6fd2..cc99128cb19 100644 --- a/editor/icons/Save.svg +++ b/editor/icons/Save.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Script.svg b/editor/icons/Script.svg index 1c6ec51a481..2a47c67def0 100644 --- a/editor/icons/Script.svg +++ b/editor/icons/Script.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ScriptCreate.svg b/editor/icons/ScriptCreate.svg index 0a03907a130..91e95eb8c7a 100644 --- a/editor/icons/ScriptCreate.svg +++ b/editor/icons/ScriptCreate.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ScriptCreateDialog.svg b/editor/icons/ScriptCreateDialog.svg index 78a69c5e593..b62891faeaf 100644 --- a/editor/icons/ScriptCreateDialog.svg +++ b/editor/icons/ScriptCreateDialog.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ScriptExtend.svg b/editor/icons/ScriptExtend.svg index efa0077ab15..5aa39e21a95 100644 --- a/editor/icons/ScriptExtend.svg +++ b/editor/icons/ScriptExtend.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ScriptRemove.svg b/editor/icons/ScriptRemove.svg index de67d029472..b455583a6c4 100644 --- a/editor/icons/ScriptRemove.svg +++ b/editor/icons/ScriptRemove.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ScrollContainer.svg b/editor/icons/ScrollContainer.svg index 738748ca91e..600590684d4 100644 --- a/editor/icons/ScrollContainer.svg +++ b/editor/icons/ScrollContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Search.svg b/editor/icons/Search.svg index 04dc4f7372c..fff4a3cb190 100644 --- a/editor/icons/Search.svg +++ b/editor/icons/Search.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SegmentShape2D.svg b/editor/icons/SegmentShape2D.svg index e4c04ae7c63..3fcbd786255 100644 --- a/editor/icons/SegmentShape2D.svg +++ b/editor/icons/SegmentShape2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Shader.svg b/editor/icons/Shader.svg index 479379d2352..33479326d4e 100644 --- a/editor/icons/Shader.svg +++ b/editor/icons/Shader.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ShaderGlobalsOverride.svg b/editor/icons/ShaderGlobalsOverride.svg index 2fe76ed777d..3a4e4cfb2c2 100644 --- a/editor/icons/ShaderGlobalsOverride.svg +++ b/editor/icons/ShaderGlobalsOverride.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ShaderMaterial.svg b/editor/icons/ShaderMaterial.svg index 37c1610f299..ff92f0c3760 100644 --- a/editor/icons/ShaderMaterial.svg +++ b/editor/icons/ShaderMaterial.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ShortCut.svg b/editor/icons/ShortCut.svg index f4e302efdbe..4ef16f0401a 100644 --- a/editor/icons/ShortCut.svg +++ b/editor/icons/ShortCut.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Signal.svg b/editor/icons/Signal.svg index 82fdf2b0595..91599ffd65b 100644 --- a/editor/icons/Signal.svg +++ b/editor/icons/Signal.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Signals.svg b/editor/icons/Signals.svg index 9c09546f840..f3bdd7be140 100644 --- a/editor/icons/Signals.svg +++ b/editor/icons/Signals.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SignalsAndGroups.svg b/editor/icons/SignalsAndGroups.svg index d568296d5f2..319163a0192 100644 --- a/editor/icons/SignalsAndGroups.svg +++ b/editor/icons/SignalsAndGroups.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Skeleton2D.svg b/editor/icons/Skeleton2D.svg index 8e38b5c9719..b34a2a9dca8 100644 --- a/editor/icons/Skeleton2D.svg +++ b/editor/icons/Skeleton2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Skeleton3D.svg b/editor/icons/Skeleton3D.svg index 015c842125b..e0780dedd6e 100644 --- a/editor/icons/Skeleton3D.svg +++ b/editor/icons/Skeleton3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SkeletonIK3D.svg b/editor/icons/SkeletonIK3D.svg index e69f6e8bf3a..45697a1b42c 100644 --- a/editor/icons/SkeletonIK3D.svg +++ b/editor/icons/SkeletonIK3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Sky.svg b/editor/icons/Sky.svg index 356a966fe96..e463c5fc332 100644 --- a/editor/icons/Sky.svg +++ b/editor/icons/Sky.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SliderJoint3D.svg b/editor/icons/SliderJoint3D.svg index fdd7487bbff..57d22dff6ac 100644 --- a/editor/icons/SliderJoint3D.svg +++ b/editor/icons/SliderJoint3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Slot.svg b/editor/icons/Slot.svg index 24d54297a8c..ec35be6b518 100644 --- a/editor/icons/Slot.svg +++ b/editor/icons/Slot.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Snap.svg b/editor/icons/Snap.svg index 632cf6c27d7..8bcf5b3a164 100644 --- a/editor/icons/Snap.svg +++ b/editor/icons/Snap.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SnapGrid.svg b/editor/icons/SnapGrid.svg index a4a1f330536..e3aea781623 100644 --- a/editor/icons/SnapGrid.svg +++ b/editor/icons/SnapGrid.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SoftBody3D.svg b/editor/icons/SoftBody3D.svg index 2c907df8474..e46691d6a28 100644 --- a/editor/icons/SoftBody3D.svg +++ b/editor/icons/SoftBody3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Sort.svg b/editor/icons/Sort.svg index 0b2f7f7ea9c..a7f01fd24e2 100644 --- a/editor/icons/Sort.svg +++ b/editor/icons/Sort.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SphereMesh.svg b/editor/icons/SphereMesh.svg index b01ba46bcf2..66cc8e3cc47 100644 --- a/editor/icons/SphereMesh.svg +++ b/editor/icons/SphereMesh.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SphereShape3D.svg b/editor/icons/SphereShape3D.svg index 4da18a1a386..cc526abcec2 100644 --- a/editor/icons/SphereShape3D.svg +++ b/editor/icons/SphereShape3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SpinBox.svg b/editor/icons/SpinBox.svg index 728710e4404..a8dc55d8dbd 100644 --- a/editor/icons/SpinBox.svg +++ b/editor/icons/SpinBox.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SpotLight3D.svg b/editor/icons/SpotLight3D.svg index 6a35ee38902..a1dea938a3b 100644 --- a/editor/icons/SpotLight3D.svg +++ b/editor/icons/SpotLight3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SpringArm3D.svg b/editor/icons/SpringArm3D.svg index eb0c1ebd7d6..707e408dd91 100644 --- a/editor/icons/SpringArm3D.svg +++ b/editor/icons/SpringArm3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Sprite2D.svg b/editor/icons/Sprite2D.svg index 26a10625fcc..faae0e444f5 100644 --- a/editor/icons/Sprite2D.svg +++ b/editor/icons/Sprite2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Sprite3D.svg b/editor/icons/Sprite3D.svg index 385bb8f87dd..4ccd8f9c486 100644 --- a/editor/icons/Sprite3D.svg +++ b/editor/icons/Sprite3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SpriteFrames.svg b/editor/icons/SpriteFrames.svg index f27adcb78cd..8ab0ec2c008 100644 --- a/editor/icons/SpriteFrames.svg +++ b/editor/icons/SpriteFrames.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SpriteSheet.svg b/editor/icons/SpriteSheet.svg index 9b3eda32873..a162037f991 100644 --- a/editor/icons/SpriteSheet.svg +++ b/editor/icons/SpriteSheet.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/StaticBody2D.svg b/editor/icons/StaticBody2D.svg index 2d846c54710..66940ad415b 100644 --- a/editor/icons/StaticBody2D.svg +++ b/editor/icons/StaticBody2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/StaticBody3D.svg b/editor/icons/StaticBody3D.svg index de819bd76bf..a4a641f28c3 100644 --- a/editor/icons/StaticBody3D.svg +++ b/editor/icons/StaticBody3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/StatusError.svg b/editor/icons/StatusError.svg index ac3060e1559..a9639c87494 100644 --- a/editor/icons/StatusError.svg +++ b/editor/icons/StatusError.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/StatusSuccess.svg b/editor/icons/StatusSuccess.svg index 4a22c6fc7f9..6e7988100f6 100644 --- a/editor/icons/StatusSuccess.svg +++ b/editor/icons/StatusSuccess.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/StatusWarning.svg b/editor/icons/StatusWarning.svg index 4ec16008d77..52d7e422c70 100644 --- a/editor/icons/StatusWarning.svg +++ b/editor/icons/StatusWarning.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Stop.svg b/editor/icons/Stop.svg index 2cb013c0df5..2059eab0784 100644 --- a/editor/icons/Stop.svg +++ b/editor/icons/Stop.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/StreamTexture.svg b/editor/icons/StreamTexture.svg index e7845e10f3b..068f65dead8 100644 --- a/editor/icons/StreamTexture.svg +++ b/editor/icons/StreamTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/String.svg b/editor/icons/String.svg index 9f3bb0b011d..5b7ade8b1e5 100644 --- a/editor/icons/String.svg +++ b/editor/icons/String.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/StyleBoxEmpty.svg b/editor/icons/StyleBoxEmpty.svg index 0268b03ef23..e1a2bc6888f 100644 --- a/editor/icons/StyleBoxEmpty.svg +++ b/editor/icons/StyleBoxEmpty.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/StyleBoxFlat.svg b/editor/icons/StyleBoxFlat.svg index a6f43be4c88..b24c453f6b4 100644 --- a/editor/icons/StyleBoxFlat.svg +++ b/editor/icons/StyleBoxFlat.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/StyleBoxLine.svg b/editor/icons/StyleBoxLine.svg index d7c26aac9df..e92f33b7b03 100644 --- a/editor/icons/StyleBoxLine.svg +++ b/editor/icons/StyleBoxLine.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/StyleBoxTexture.svg b/editor/icons/StyleBoxTexture.svg index 6f067a4db4a..89bbc41ef8d 100644 --- a/editor/icons/StyleBoxTexture.svg +++ b/editor/icons/StyleBoxTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SubViewport.svg b/editor/icons/SubViewport.svg index 103b1006adb..1e17ae234fd 100644 --- a/editor/icons/SubViewport.svg +++ b/editor/icons/SubViewport.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/SubViewportContainer.svg b/editor/icons/SubViewportContainer.svg index 18dcddc15f3..baf80e5086d 100644 --- a/editor/icons/SubViewportContainer.svg +++ b/editor/icons/SubViewportContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TabContainer.svg b/editor/icons/TabContainer.svg index fe0e426ef9f..aeb5507279c 100644 --- a/editor/icons/TabContainer.svg +++ b/editor/icons/TabContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Tabs.svg b/editor/icons/Tabs.svg index ad1e9069d0a..4fd4a5cd80e 100644 --- a/editor/icons/Tabs.svg +++ b/editor/icons/Tabs.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TestCube.svg b/editor/icons/TestCube.svg index 16cf68520f0..bdfb3c893b3 100644 --- a/editor/icons/TestCube.svg +++ b/editor/icons/TestCube.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TextEdit.svg b/editor/icons/TextEdit.svg index 66f2fca4ba6..366cf6596d9 100644 --- a/editor/icons/TextEdit.svg +++ b/editor/icons/TextEdit.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TextFile.svg b/editor/icons/TextFile.svg index d381048212d..f480217dcd1 100644 --- a/editor/icons/TextFile.svg +++ b/editor/icons/TextFile.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Texture3D.svg b/editor/icons/Texture3D.svg index ed8ce3e4eff..6bdc599f6d3 100644 --- a/editor/icons/Texture3D.svg +++ b/editor/icons/Texture3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TextureArray.svg b/editor/icons/TextureArray.svg index 4631b1449c9..86d4875e122 100644 --- a/editor/icons/TextureArray.svg +++ b/editor/icons/TextureArray.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TextureButton.svg b/editor/icons/TextureButton.svg index 6e1d1b64363..497386945e8 100644 --- a/editor/icons/TextureButton.svg +++ b/editor/icons/TextureButton.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TextureProgress.svg b/editor/icons/TextureProgress.svg index 5763fde8402..30d76e33b89 100644 --- a/editor/icons/TextureProgress.svg +++ b/editor/icons/TextureProgress.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TextureRect.svg b/editor/icons/TextureRect.svg index 1d1b5ed8f7b..605afbb7cad 100644 --- a/editor/icons/TextureRect.svg +++ b/editor/icons/TextureRect.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Theme.svg b/editor/icons/Theme.svg index e16acbfb726..00e1716dad3 100644 --- a/editor/icons/Theme.svg +++ b/editor/icons/Theme.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ThumbnailWait.svg b/editor/icons/ThumbnailWait.svg index fe242e81fb5..be510f457d2 100644 --- a/editor/icons/ThumbnailWait.svg +++ b/editor/icons/ThumbnailWait.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TileMap.svg b/editor/icons/TileMap.svg index afdaeea7e87..d1904338a87 100644 --- a/editor/icons/TileMap.svg +++ b/editor/icons/TileMap.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TileSet.svg b/editor/icons/TileSet.svg index 0948e6dae13..5da406889e0 100644 --- a/editor/icons/TileSet.svg +++ b/editor/icons/TileSet.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Time.svg b/editor/icons/Time.svg index eb411c6858a..63215c9767f 100644 --- a/editor/icons/Time.svg +++ b/editor/icons/Time.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TimelineIndicator.svg b/editor/icons/TimelineIndicator.svg index fd18192705f..d63026b9e27 100644 --- a/editor/icons/TimelineIndicator.svg +++ b/editor/icons/TimelineIndicator.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Timer.svg b/editor/icons/Timer.svg index d445eeb1ddf..3fc69758bbb 100644 --- a/editor/icons/Timer.svg +++ b/editor/icons/Timer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ToolAddNode.svg b/editor/icons/ToolAddNode.svg index 71599c0b0de..9f47019746f 100644 --- a/editor/icons/ToolAddNode.svg +++ b/editor/icons/ToolAddNode.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ToolConnect.svg b/editor/icons/ToolConnect.svg index 321f68654a0..a778e260a63 100644 --- a/editor/icons/ToolConnect.svg +++ b/editor/icons/ToolConnect.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ToolMove.svg b/editor/icons/ToolMove.svg index a02296fed67..b83f62265f0 100644 --- a/editor/icons/ToolMove.svg +++ b/editor/icons/ToolMove.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ToolPan.svg b/editor/icons/ToolPan.svg index e1955426877..28ffe6336a8 100644 --- a/editor/icons/ToolPan.svg +++ b/editor/icons/ToolPan.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ToolRotate.svg b/editor/icons/ToolRotate.svg index e25b08cd079..41dd22584de 100644 --- a/editor/icons/ToolRotate.svg +++ b/editor/icons/ToolRotate.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ToolScale.svg b/editor/icons/ToolScale.svg index 8fc15272963..730143a474e 100644 --- a/editor/icons/ToolScale.svg +++ b/editor/icons/ToolScale.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ToolSelect.svg b/editor/icons/ToolSelect.svg index 4285b3181b7..21318b5c054 100644 --- a/editor/icons/ToolSelect.svg +++ b/editor/icons/ToolSelect.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ToolTriangle.svg b/editor/icons/ToolTriangle.svg index 17ce12265e9..51dee03f60d 100644 --- a/editor/icons/ToolTriangle.svg +++ b/editor/icons/ToolTriangle.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Tools.svg b/editor/icons/Tools.svg index dc002d6a4db..81e7385945c 100644 --- a/editor/icons/Tools.svg +++ b/editor/icons/Tools.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TouchScreenButton.svg b/editor/icons/TouchScreenButton.svg index d29e411f054..aec0951d598 100644 --- a/editor/icons/TouchScreenButton.svg +++ b/editor/icons/TouchScreenButton.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TrackAddKey.svg b/editor/icons/TrackAddKey.svg index 582003cd9b7..5d2b4ebaf91 100644 --- a/editor/icons/TrackAddKey.svg +++ b/editor/icons/TrackAddKey.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TrackAddKeyHl.svg b/editor/icons/TrackAddKeyHl.svg index 7f3c60a5628..0a0cdea48cb 100644 --- a/editor/icons/TrackAddKeyHl.svg +++ b/editor/icons/TrackAddKeyHl.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TrackCapture.svg b/editor/icons/TrackCapture.svg index 51a38ff1fbd..aaa4a20e4a9 100644 --- a/editor/icons/TrackCapture.svg +++ b/editor/icons/TrackCapture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TrackContinuous.svg b/editor/icons/TrackContinuous.svg index 2e89cdd8219..7f64ad7dbbc 100644 --- a/editor/icons/TrackContinuous.svg +++ b/editor/icons/TrackContinuous.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TrackDiscrete.svg b/editor/icons/TrackDiscrete.svg index a0550822bfa..d1df4b16678 100644 --- a/editor/icons/TrackDiscrete.svg +++ b/editor/icons/TrackDiscrete.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TrackTrigger.svg b/editor/icons/TrackTrigger.svg index 5572b254a29..6e46a74121a 100644 --- a/editor/icons/TrackTrigger.svg +++ b/editor/icons/TrackTrigger.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Transform.svg b/editor/icons/Transform.svg index 0ed5377ed74..4d9bb829cde 100644 --- a/editor/icons/Transform.svg +++ b/editor/icons/Transform.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Transform2D.svg b/editor/icons/Transform2D.svg index a57587ba06c..a0b54302986 100644 --- a/editor/icons/Transform2D.svg +++ b/editor/icons/Transform2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionEnd.svg b/editor/icons/TransitionEnd.svg index 8d6857432fc..d0263c159e2 100644 --- a/editor/icons/TransitionEnd.svg +++ b/editor/icons/TransitionEnd.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionEndAuto.svg b/editor/icons/TransitionEndAuto.svg index fbfa7b03db6..89eb373df67 100644 --- a/editor/icons/TransitionEndAuto.svg +++ b/editor/icons/TransitionEndAuto.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionEndAutoBig.svg b/editor/icons/TransitionEndAutoBig.svg index fcc894a3e6f..22f3414d343 100644 --- a/editor/icons/TransitionEndAutoBig.svg +++ b/editor/icons/TransitionEndAutoBig.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionEndBig.svg b/editor/icons/TransitionEndBig.svg index cc93dd58085..641f9c55d01 100644 --- a/editor/icons/TransitionEndBig.svg +++ b/editor/icons/TransitionEndBig.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionImmediate.svg b/editor/icons/TransitionImmediate.svg index 56e9b6c0f3d..ffab62410d5 100644 --- a/editor/icons/TransitionImmediate.svg +++ b/editor/icons/TransitionImmediate.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionImmediateAuto.svg b/editor/icons/TransitionImmediateAuto.svg index 8453bcff089..98c583f407a 100644 --- a/editor/icons/TransitionImmediateAuto.svg +++ b/editor/icons/TransitionImmediateAuto.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionImmediateAutoBig.svg b/editor/icons/TransitionImmediateAutoBig.svg index 77f7ba592e7..fe5e0903b5b 100644 --- a/editor/icons/TransitionImmediateAutoBig.svg +++ b/editor/icons/TransitionImmediateAutoBig.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionImmediateBig.svg b/editor/icons/TransitionImmediateBig.svg index 94584c45f72..2365518cc38 100644 --- a/editor/icons/TransitionImmediateBig.svg +++ b/editor/icons/TransitionImmediateBig.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionSync.svg b/editor/icons/TransitionSync.svg index affa3531009..439d17fc3b0 100644 --- a/editor/icons/TransitionSync.svg +++ b/editor/icons/TransitionSync.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionSyncAuto.svg b/editor/icons/TransitionSyncAuto.svg index 767773a0002..022e1d8a7d2 100644 --- a/editor/icons/TransitionSyncAuto.svg +++ b/editor/icons/TransitionSyncAuto.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionSyncAutoBig.svg b/editor/icons/TransitionSyncAutoBig.svg index c9735a2653b..27cb6376671 100644 --- a/editor/icons/TransitionSyncAutoBig.svg +++ b/editor/icons/TransitionSyncAutoBig.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/TransitionSyncBig.svg b/editor/icons/TransitionSyncBig.svg index 959f26c6f10..27ae5197397 100644 --- a/editor/icons/TransitionSyncBig.svg +++ b/editor/icons/TransitionSyncBig.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Translation.svg b/editor/icons/Translation.svg index 4195ce04a97..fd6e689250b 100644 --- a/editor/icons/Translation.svg +++ b/editor/icons/Translation.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Transpose.svg b/editor/icons/Transpose.svg index e63c6793232..41b88ea667e 100644 --- a/editor/icons/Transpose.svg +++ b/editor/icons/Transpose.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Tree.svg b/editor/icons/Tree.svg index 8e450948cec..9476f40db30 100644 --- a/editor/icons/Tree.svg +++ b/editor/icons/Tree.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Tween.svg b/editor/icons/Tween.svg index c311cbd05ee..d5cfbbcd889 100644 --- a/editor/icons/Tween.svg +++ b/editor/icons/Tween.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Unbone.svg b/editor/icons/Unbone.svg index 75df7e6ce98..2aa0b8ad8c1 100644 --- a/editor/icons/Unbone.svg +++ b/editor/icons/Unbone.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Ungroup.svg b/editor/icons/Ungroup.svg index c6e235f47d4..f3f1051bcc8 100644 --- a/editor/icons/Ungroup.svg +++ b/editor/icons/Ungroup.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Unlock.svg b/editor/icons/Unlock.svg index 52be7e22339..29fbd762929 100644 --- a/editor/icons/Unlock.svg +++ b/editor/icons/Unlock.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/UnpaintVertex.svg b/editor/icons/UnpaintVertex.svg index 7bb94f06be3..059fcf6e25b 100644 --- a/editor/icons/UnpaintVertex.svg +++ b/editor/icons/UnpaintVertex.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Uv.svg b/editor/icons/Uv.svg index f68ea2c9842..82c914c84f8 100644 --- a/editor/icons/Uv.svg +++ b/editor/icons/Uv.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VBoxContainer.svg b/editor/icons/VBoxContainer.svg index 17b83ced0aa..9a68df4f6a5 100644 --- a/editor/icons/VBoxContainer.svg +++ b/editor/icons/VBoxContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VScrollBar.svg b/editor/icons/VScrollBar.svg index 285e54fbd12..e0fc575860a 100644 --- a/editor/icons/VScrollBar.svg +++ b/editor/icons/VScrollBar.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VSeparator.svg b/editor/icons/VSeparator.svg index 6476ea5ad77..11038b75425 100644 --- a/editor/icons/VSeparator.svg +++ b/editor/icons/VSeparator.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VSlider.svg b/editor/icons/VSlider.svg index c6fc1e6e0f7..0ecb1e9aa38 100644 --- a/editor/icons/VSlider.svg +++ b/editor/icons/VSlider.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VSplitContainer.svg b/editor/icons/VSplitContainer.svg index b9bbb4bfc30..21d45bd5e75 100644 --- a/editor/icons/VSplitContainer.svg +++ b/editor/icons/VSplitContainer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Variant.svg b/editor/icons/Variant.svg index 7c2e4559d1e..71ebd060ae3 100644 --- a/editor/icons/Variant.svg +++ b/editor/icons/Variant.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Vector2.svg b/editor/icons/Vector2.svg index b4e9b44c030..43a93df83fa 100644 --- a/editor/icons/Vector2.svg +++ b/editor/icons/Vector2.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Vector3.svg b/editor/icons/Vector3.svg index 74861160d6e..2606f6e22b8 100644 --- a/editor/icons/Vector3.svg +++ b/editor/icons/Vector3.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VehicleBody3D.svg b/editor/icons/VehicleBody3D.svg index a5097306024..0cfbad371cc 100644 --- a/editor/icons/VehicleBody3D.svg +++ b/editor/icons/VehicleBody3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VehicleWheel3D.svg b/editor/icons/VehicleWheel3D.svg index bd870c01186..0391eac4cf7 100644 --- a/editor/icons/VehicleWheel3D.svg +++ b/editor/icons/VehicleWheel3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VideoPlayer.svg b/editor/icons/VideoPlayer.svg index 4e8dcf0ec2c..c5433e01319 100644 --- a/editor/icons/VideoPlayer.svg +++ b/editor/icons/VideoPlayer.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Viewport.svg b/editor/icons/Viewport.svg index 7cd5d73cde9..7d388c1c6d9 100644 --- a/editor/icons/Viewport.svg +++ b/editor/icons/Viewport.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ViewportSpeed.svg b/editor/icons/ViewportSpeed.svg index 364eb4969be..8fceaffd521 100644 --- a/editor/icons/ViewportSpeed.svg +++ b/editor/icons/ViewportSpeed.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ViewportTexture.svg b/editor/icons/ViewportTexture.svg index 145beff6bc9..3dd448b1ac0 100644 --- a/editor/icons/ViewportTexture.svg +++ b/editor/icons/ViewportTexture.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ViewportZoom.svg b/editor/icons/ViewportZoom.svg index 6d64d1b8a4f..d111e5d5c5a 100644 --- a/editor/icons/ViewportZoom.svg +++ b/editor/icons/ViewportZoom.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VisibilityEnabler2D.svg b/editor/icons/VisibilityEnabler2D.svg index 2976e468ed8..e603936d831 100644 --- a/editor/icons/VisibilityEnabler2D.svg +++ b/editor/icons/VisibilityEnabler2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VisibilityEnabler3D.svg b/editor/icons/VisibilityEnabler3D.svg index 70e4f081c2b..07ba8b88df2 100644 --- a/editor/icons/VisibilityEnabler3D.svg +++ b/editor/icons/VisibilityEnabler3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VisibilityNotifier2D.svg b/editor/icons/VisibilityNotifier2D.svg index e05d7d3887b..8eaf8334ac3 100644 --- a/editor/icons/VisibilityNotifier2D.svg +++ b/editor/icons/VisibilityNotifier2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VisibilityNotifier3D.svg b/editor/icons/VisibilityNotifier3D.svg index c908d5c99d5..afb433c9edf 100644 --- a/editor/icons/VisibilityNotifier3D.svg +++ b/editor/icons/VisibilityNotifier3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VisualShader.svg b/editor/icons/VisualShader.svg index 15cb60d2e3b..70060665920 100644 --- a/editor/icons/VisualShader.svg +++ b/editor/icons/VisualShader.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/VisualShaderPort.svg b/editor/icons/VisualShaderPort.svg index 9df6344fe29..5311513d836 100644 --- a/editor/icons/VisualShaderPort.svg +++ b/editor/icons/VisualShaderPort.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Warning.svg b/editor/icons/Warning.svg index 698288d5a90..cdb88dd2d2d 100644 --- a/editor/icons/Warning.svg +++ b/editor/icons/Warning.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Window.svg b/editor/icons/Window.svg index a02a86d56af..a60a25bcdf1 100644 --- a/editor/icons/Window.svg +++ b/editor/icons/Window.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/World2D.svg b/editor/icons/World2D.svg index 862242ec440..d7848366940 100644 --- a/editor/icons/World2D.svg +++ b/editor/icons/World2D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/World3D.svg b/editor/icons/World3D.svg index 3db96a75a67..acb1083b88b 100644 --- a/editor/icons/World3D.svg +++ b/editor/icons/World3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/WorldEnvironment.svg b/editor/icons/WorldEnvironment.svg index e87a4b5b0c3..314639a5761 100644 --- a/editor/icons/WorldEnvironment.svg +++ b/editor/icons/WorldEnvironment.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/WorldMarginShape3D.svg b/editor/icons/WorldMarginShape3D.svg index 2c90cf6d53d..a73e74ad333 100644 --- a/editor/icons/WorldMarginShape3D.svg +++ b/editor/icons/WorldMarginShape3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/X509Certificate.svg b/editor/icons/X509Certificate.svg index e175fa3234d..b56268f281e 100644 --- a/editor/icons/X509Certificate.svg +++ b/editor/icons/X509Certificate.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/XRAnchor3D.svg b/editor/icons/XRAnchor3D.svg index f1571b3fcca..0f6282a0859 100644 --- a/editor/icons/XRAnchor3D.svg +++ b/editor/icons/XRAnchor3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/XRCamera3D.svg b/editor/icons/XRCamera3D.svg index f59a8c8b4ab..9f9072fc1ed 100644 --- a/editor/icons/XRCamera3D.svg +++ b/editor/icons/XRCamera3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/XRController3D.svg b/editor/icons/XRController3D.svg index 40e5b8dce1f..9296b11c8ec 100644 --- a/editor/icons/XRController3D.svg +++ b/editor/icons/XRController3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/XROrigin3D.svg b/editor/icons/XROrigin3D.svg index dbb93ba7a59..dda24e7530f 100644 --- a/editor/icons/XROrigin3D.svg +++ b/editor/icons/XROrigin3D.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/YSort.svg b/editor/icons/YSort.svg index dbcefef216d..40367bd2b20 100644 --- a/editor/icons/YSort.svg +++ b/editor/icons/YSort.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/Zoom.svg b/editor/icons/Zoom.svg index aa517b6ae22..fc0102f0e32 100644 --- a/editor/icons/Zoom.svg +++ b/editor/icons/Zoom.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ZoomLess.svg b/editor/icons/ZoomLess.svg index cf3b4475c94..18b052c32a4 100644 --- a/editor/icons/ZoomLess.svg +++ b/editor/icons/ZoomLess.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ZoomMore.svg b/editor/icons/ZoomMore.svg index 8847eea53f0..fdc80611da3 100644 --- a/editor/icons/ZoomMore.svg +++ b/editor/icons/ZoomMore.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/ZoomReset.svg b/editor/icons/ZoomReset.svg index 6ecb4111fee..f6793b68165 100644 --- a/editor/icons/ZoomReset.svg +++ b/editor/icons/ZoomReset.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/bool.svg b/editor/icons/bool.svg index 5ffd40a8155..e6e32001ef3 100644 --- a/editor/icons/bool.svg +++ b/editor/icons/bool.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/float.svg b/editor/icons/float.svg index 5c09d4c244d..1e931ad9306 100644 --- a/editor/icons/float.svg +++ b/editor/icons/float.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/editor/icons/int.svg b/editor/icons/int.svg index 4226c8cb7e7..f8c88300f7b 100644 --- a/editor/icons/int.svg +++ b/editor/icons/int.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/logo.svg b/logo.svg index 865712b3458..d6f4235ac3a 100644 --- a/logo.svg +++ b/logo.svg @@ -216,4 +216,4 @@ d="m 0,0 c 0,-7.994 6.477,-14.473 14.471,-14.473 8.002,0 14.479,6.479 14.479,14.473 0,7.994 -6.477,14.479 -14.479,14.479 C 6.477,14.479 0,7.994 0,0" style="fill:#414042;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.88413143" id="path108" - inkscape:connector-curvature="0" /> \ No newline at end of file + inkscape:connector-curvature="0" /> diff --git a/misc/dist/document_icons/gdscript.svg b/misc/dist/document_icons/gdscript.svg index ec65eb098ad..d6f69b6358b 100644 --- a/misc/dist/document_icons/gdscript.svg +++ b/misc/dist/document_icons/gdscript.svg @@ -1 +1 @@ -GDSCRIPT \ No newline at end of file +GDSCRIPT diff --git a/misc/dist/document_icons/gdscript_extra_small.svg b/misc/dist/document_icons/gdscript_extra_small.svg index 1c3545ef9dc..2b06f96caca 100644 --- a/misc/dist/document_icons/gdscript_extra_small.svg +++ b/misc/dist/document_icons/gdscript_extra_small.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/misc/dist/document_icons/gdscript_small.svg b/misc/dist/document_icons/gdscript_small.svg index 468f4243a24..47d448fb2cc 100644 --- a/misc/dist/document_icons/gdscript_small.svg +++ b/misc/dist/document_icons/gdscript_small.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/misc/dist/document_icons/project.svg b/misc/dist/document_icons/project.svg index aa9b936f27a..1767dd5cfad 100644 --- a/misc/dist/document_icons/project.svg +++ b/misc/dist/document_icons/project.svg @@ -1 +1 @@ -PROJECT \ No newline at end of file +PROJECT diff --git a/misc/dist/document_icons/project_extra_small.svg b/misc/dist/document_icons/project_extra_small.svg index 5482d270333..f17789b69a8 100644 --- a/misc/dist/document_icons/project_extra_small.svg +++ b/misc/dist/document_icons/project_extra_small.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/misc/dist/document_icons/project_small.svg b/misc/dist/document_icons/project_small.svg index 76f501b80d5..d9473b1da32 100644 --- a/misc/dist/document_icons/project_small.svg +++ b/misc/dist/document_icons/project_small.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/misc/dist/document_icons/resource.svg b/misc/dist/document_icons/resource.svg index 2555e8f5c00..f26df32b22e 100644 --- a/misc/dist/document_icons/resource.svg +++ b/misc/dist/document_icons/resource.svg @@ -1 +1 @@ -RESOURCE \ No newline at end of file +RESOURCE diff --git a/misc/dist/document_icons/resource_extra_small.svg b/misc/dist/document_icons/resource_extra_small.svg index 4ba41b00736..54bd41f0691 100644 --- a/misc/dist/document_icons/resource_extra_small.svg +++ b/misc/dist/document_icons/resource_extra_small.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/misc/dist/document_icons/resource_small.svg b/misc/dist/document_icons/resource_small.svg index 502a4c6c363..24bf0bfd98d 100644 --- a/misc/dist/document_icons/resource_small.svg +++ b/misc/dist/document_icons/resource_small.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/misc/dist/document_icons/scene.svg b/misc/dist/document_icons/scene.svg index a4e1ca809e0..3a36c8a5b05 100644 --- a/misc/dist/document_icons/scene.svg +++ b/misc/dist/document_icons/scene.svg @@ -1 +1 @@ -SCENE \ No newline at end of file +SCENE diff --git a/misc/dist/document_icons/scene_extra_small.svg b/misc/dist/document_icons/scene_extra_small.svg index 155aa843b2a..9e48feb0ed3 100644 --- a/misc/dist/document_icons/scene_extra_small.svg +++ b/misc/dist/document_icons/scene_extra_small.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/misc/dist/document_icons/scene_small.svg b/misc/dist/document_icons/scene_small.svg index d36d42f4583..a408250a50b 100644 --- a/misc/dist/document_icons/scene_small.svg +++ b/misc/dist/document_icons/scene_small.svg @@ -1 +1 @@ - \ No newline at end of file + From 99864393525a8a61afc4de384650930ef8d3c70f Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Mon, 13 Jul 2020 14:13:38 -0400 Subject: [PATCH 3/4] Commit other files changed by file_format.sh --- .appveyor.yml | 4 ++-- .github/workflows/main.yml | 8 ++++---- core/oa_hash_map.h | 2 +- doc/classes/Array.xml | 8 ++++---- doc/classes/Decal.xml | 4 ++-- doc/classes/InputEventMouseMotion.xml | 2 +- doc/classes/KinematicBody2D.xml | 2 +- doc/classes/KinematicBody3D.xml | 2 +- doc/classes/RayCast2D.xml | 2 +- doc/classes/RayCast3D.xml | 2 +- main/tests/test_astar.cpp | 8 ++++---- .../Images.xcassets/LaunchImage.launchimage/Contents.json | 2 +- misc/dist/uwp_template/AppxManifest.xml | 2 +- modules/gdnative/nativescript/api_generator.cpp | 2 +- modules/mono/csharp_script.cpp | 6 +++--- .../GodotTools/GodotTools.IdeMessaging.CLI/Program.cs | 2 +- .../GodotTools/GodotTools.OpenVisualStudio/Program.cs | 2 +- .../android/java/lib/res/layout/downloading_expansion.xml | 2 +- .../res/layout/status_bar_ongoing_event_progress_bar.xml | 2 +- platform/android/java/lib/res/mipmap-anydpi-v26/icon.xml | 2 +- platform/android/java/lib/res/values-ar/strings.xml | 2 +- platform/android/java/lib/res/values-bg/strings.xml | 2 +- platform/android/java/lib/res/values-ca/strings.xml | 2 +- platform/android/java/lib/res/values-cs/strings.xml | 2 +- platform/android/java/lib/res/values-da/strings.xml | 2 +- platform/android/java/lib/res/values-de/strings.xml | 2 +- platform/android/java/lib/res/values-el/strings.xml | 2 +- platform/android/java/lib/res/values-en/strings.xml | 2 +- platform/android/java/lib/res/values-es-rES/strings.xml | 2 +- platform/android/java/lib/res/values-es/strings.xml | 2 +- platform/android/java/lib/res/values-fi/strings.xml | 2 +- platform/android/java/lib/res/values-fr/strings.xml | 2 +- platform/android/java/lib/res/values-hi/strings.xml | 2 +- platform/android/java/lib/res/values-hr/strings.xml | 2 +- platform/android/java/lib/res/values-hu/strings.xml | 2 +- platform/android/java/lib/res/values-in/strings.xml | 2 +- platform/android/java/lib/res/values-it/strings.xml | 2 +- platform/android/java/lib/res/values-iw/strings.xml | 2 +- platform/android/java/lib/res/values-ja/strings.xml | 2 +- platform/android/java/lib/res/values-ko/strings.xml | 2 +- platform/android/java/lib/res/values-lt/strings.xml | 2 +- platform/android/java/lib/res/values-lv/strings.xml | 2 +- platform/android/java/lib/res/values-nb/strings.xml | 2 +- platform/android/java/lib/res/values-nl/strings.xml | 2 +- platform/android/java/lib/res/values-pl/strings.xml | 2 +- platform/android/java/lib/res/values-pt/strings.xml | 2 +- platform/android/java/lib/res/values-ro/strings.xml | 2 +- platform/android/java/lib/res/values-ru/strings.xml | 2 +- platform/android/java/lib/res/values-sk/strings.xml | 2 +- platform/android/java/lib/res/values-sl/strings.xml | 2 +- platform/android/java/lib/res/values-sr/strings.xml | 2 +- platform/android/java/lib/res/values-sv/strings.xml | 2 +- platform/android/java/lib/res/values-th/strings.xml | 2 +- platform/android/java/lib/res/values-tl/strings.xml | 2 +- platform/android/java/lib/res/values-tr/strings.xml | 2 +- platform/android/java/lib/res/values-uk/strings.xml | 2 +- platform/android/java/lib/res/values-vi/strings.xml | 2 +- platform/android/java/lib/res/values/strings.xml | 2 +- platform/android/java/lib/res/values/styles.xml | 2 +- platform/osx/os_osx.mm | 2 +- 60 files changed, 73 insertions(+), 73 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index c39a485d35f..0173657e800 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -48,8 +48,8 @@ after_build: - cd bin - mv godot.windows.opt.tools.64.exe godot_%APPVEYOR_REPO_BRANCH%-%VERSION_HASH%_win64.exe - 7z a -mx9 godot_%APPVEYOR_REPO_BRANCH%-%VERSION_HASH%_win64.zip *.exe - + artifacts: - path: bin/godot_${APPVEYOR_REPO_BRANCH}-${VERSION_HASH}_win64.zip name: Win64 release_debug editor build - type: zip \ No newline at end of file + type: zip diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2ef335fe020..3b5d39bb123 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,9 +44,9 @@ jobs: uses: actions/setup-python@v2 with: # Semantic version range syntax or exact version of a Python version - python-version: '3.x' + python-version: '3.x' # Optional - x64 or x86 architecture, defaults to x64 - architecture: 'x64' + architecture: 'x64' # Setup scons, print python version and scons version info, so if anything is broken it won't run the build. - name: Configuring Python packages @@ -99,9 +99,9 @@ jobs: uses: actions/setup-python@v2 with: # Semantic version range syntax or exact version of a Python version - python-version: '3.x' + python-version: '3.x' # Optional - x64 or x86 architecture, defaults to x64 - architecture: 'x64' + architecture: 'x64' # You can test your matrix by printing the current Python version - name: Configuring Python packages diff --git a/core/oa_hash_map.h b/core/oa_hash_map.h index 775e17fdb5a..6061366ab39 100644 --- a/core/oa_hash_map.h +++ b/core/oa_hash_map.h @@ -48,7 +48,7 @@ * * Only used keys and values are constructed. For free positions there's space * in the arrays for each, but that memory is kept uninitialized. - * + * * The assignment operator copy the pairs from one map to the other. */ template Returns [code]true[/code] if the array contains the given value. [codeblock] - ["inside", 7].has("inside") == true - ["inside", 7].has("outside") == false - ["inside", 7].has(7) == true - ["inside", 7].has("7") == false + print(["inside", 7].has("inside")) # True + print(["inside", 7].has("outside")) # False + print(["inside", 7].has(7)) # True + print(["inside", 7].has("7")) # False [/codeblock] [b]Note:[/b] This is equivalent to using the [code]in[/code] operator as follows: [codeblock] diff --git a/doc/classes/Decal.xml b/doc/classes/Decal.xml index f7329d1537d..f9baa3b09a6 100644 --- a/doc/classes/Decal.xml +++ b/doc/classes/Decal.xml @@ -17,7 +17,7 @@ - Returns the [Texture2D] associated with the specified [enum DecalTexture]. This is a convenience method, in most cases you should access the texture directly. + Returns the [Texture2D] associated with the specified [enum DecalTexture]. This is a convenience method, in most cases you should access the texture directly. For example, instead of [code]albedo_tex = $Decal.get_texture(Decal.TEXTURE_ALBEDO)[/code], use [code]albedo_tex = $Decal.texture_albedo[/code]. One case where this is better than accessing the texture directly is when you want to copy one Decal's textures to another. For example: [codeblock] @@ -34,7 +34,7 @@ - Sets the [Texture2D] associated with the specified [enum DecalTexture]. This is a convenience method, in most cases you should access the texture directly. + Sets the [Texture2D] associated with the specified [enum DecalTexture]. This is a convenience method, in most cases you should access the texture directly. For example, instead of [code]$Decal.set_texture(Decal.TEXTURE_ALBEDO, albedo_tex)[/code], use [code]$Decal.texture_albedo = albedo_tex[/code]. One case where this is better than accessing the texture directly is when you want to copy one Decal's textures to another. For example: [codeblock] diff --git a/doc/classes/InputEventMouseMotion.xml b/doc/classes/InputEventMouseMotion.xml index 97b9d5247a0..53e6517c7a2 100644 --- a/doc/classes/InputEventMouseMotion.xml +++ b/doc/classes/InputEventMouseMotion.xml @@ -16,7 +16,7 @@ Represents the pressure the user puts on the pen. Ranges from [code]0.0[/code] to [code]1.0[/code]. - The mouse position relative to the previous position (position at the last frame). + The mouse position relative to the previous position (position at the last frame). [b]Note:[/b] Since [InputEventMouseMotion] is only emitted when the mouse moves, the last event won't have a relative position of [code]Vector2(0, 0)[/code] when the user stops moving the mouse. diff --git a/doc/classes/KinematicBody2D.xml b/doc/classes/KinematicBody2D.xml index f0f4d838219..455fdad771d 100644 --- a/doc/classes/KinematicBody2D.xml +++ b/doc/classes/KinematicBody2D.xml @@ -104,7 +104,7 @@ Moves the body along a vector. If the body collides with another, it will slide along the other body rather than stop immediately. If the other body is a [KinematicBody2D] or [RigidBody2D], it will also be affected by the motion of the other body. You can use this to make moving or rotating platforms, or to make nodes push other nodes. This method should be used in [method Node._physics_process] (or in a method called by [method Node._physics_process]), as it uses the physics step's [code]delta[/code] value automatically in calculations. Otherwise, the simulation will run at an incorrect speed. - [code]linear_velocity[/code] is the velocity vector in pixels per second. Unlike in [method move_and_collide], you should [i]not[/i] multiply it by [code]delta[/code] — the physics engine handles applying the velocity. + [code]linear_velocity[/code] is the velocity vector in pixels per second. Unlike in [method move_and_collide], you should [i]not[/i] multiply it by [code]delta[/code] — the physics engine handles applying the velocity. [code]up_direction[/code] is the up direction, used to determine what is a wall and what is a floor or a ceiling. If set to the default value of [code]Vector2(0, 0)[/code], everything is considered a wall. This is useful for topdown games. If [code]stop_on_slope[/code] is [code]true[/code], body will not slide on slopes when you include gravity in [code]linear_velocity[/code] and the body is standing still. If the body collides, it will change direction a maximum of [code]max_slides[/code] times before it stops. diff --git a/doc/classes/KinematicBody3D.xml b/doc/classes/KinematicBody3D.xml index 5477c6bab6e..01cce907f9e 100644 --- a/doc/classes/KinematicBody3D.xml +++ b/doc/classes/KinematicBody3D.xml @@ -106,7 +106,7 @@ Moves the body along a vector. If the body collides with another, it will slide along the other body rather than stop immediately. If the other body is a [KinematicBody3D] or [RigidBody3D], it will also be affected by the motion of the other body. You can use this to make moving or rotating platforms, or to make nodes push other nodes. This method should be used in [method Node._physics_process] (or in a method called by [method Node._physics_process]), as it uses the physics step's [code]delta[/code] value automatically in calculations. Otherwise, the simulation will run at an incorrect speed. - [code]linear_velocity[/code] is the velocity vector (typically meters per second). Unlike in [method move_and_collide], you should [i]not[/i] multiply it by [code]delta[/code] — the physics engine handles applying the velocity. + [code]linear_velocity[/code] is the velocity vector (typically meters per second). Unlike in [method move_and_collide], you should [i]not[/i] multiply it by [code]delta[/code] — the physics engine handles applying the velocity. [code]up_direction[/code] is the up direction, used to determine what is a wall and what is a floor or a ceiling. If set to the default value of [code]Vector3(0, 0, 0)[/code], everything is considered a wall. If [code]stop_on_slope[/code] is [code]true[/code], body will not slide on slopes when you include gravity in [code]linear_velocity[/code] and the body is standing still. If the body collides, it will change direction a maximum of [code]max_slides[/code] times before it stops. diff --git a/doc/classes/RayCast2D.xml b/doc/classes/RayCast2D.xml index 4a594d3e1a4..6a11630c0e6 100644 --- a/doc/classes/RayCast2D.xml +++ b/doc/classes/RayCast2D.xml @@ -44,7 +44,7 @@ Updates the collision information for the ray. Use this method to update the collision information immediately instead of waiting for the next [code]_physics_process[/code] call, for example if the ray or its parent has changed state. - [b]Note:[/b] [code]enabled == true[/code] is not required for this to work. + [b]Note:[/b] [member enabled] does not need to be [code]true[/code] for this to work. diff --git a/doc/classes/RayCast3D.xml b/doc/classes/RayCast3D.xml index 3512da9d77b..e7ee1d284f8 100644 --- a/doc/classes/RayCast3D.xml +++ b/doc/classes/RayCast3D.xml @@ -45,7 +45,7 @@ Updates the collision information for the ray. Use this method to update the collision information immediately instead of waiting for the next [code]_physics_process[/code] call, for example if the ray or its parent has changed state. - [b]Note:[/b] [code]enabled == true[/code] is not required for this to work. + [b]Note:[/b] [member enabled] does not need to be [code]true[/code] for this to work. diff --git a/main/tests/test_astar.cpp b/main/tests/test_astar.cpp index fe335589b01..cb5fcfe37b7 100644 --- a/main/tests/test_astar.cpp +++ b/main/tests/test_astar.cpp @@ -102,9 +102,9 @@ bool test_add_remove() { a.connect_points(1, 3, true); a.connect_points(1, 4, false); - ok = ok && (a.are_points_connected(2, 1) == true); - ok = ok && (a.are_points_connected(4, 1) == true); - ok = ok && (a.are_points_connected(2, 1, false) == true); + ok = ok && (a.are_points_connected(2, 1)); + ok = ok && (a.are_points_connected(4, 1)); + ok = ok && (a.are_points_connected(2, 1, false)); ok = ok && (a.are_points_connected(4, 1, false) == false); a.disconnect_points(1, 2, true); @@ -179,7 +179,7 @@ bool test_add_remove() { if (Math::rand() % 2 == 1) { // Add a (possibly existing) directed edge and confirm connectivity a.connect_points(u, v, false); - ok = ok && (a.are_points_connected(u, v, false) == true); + ok = ok && (a.are_points_connected(u, v, false)); } else { // Remove a (possibly nonexistent) directed edge and confirm disconnectivity a.disconnect_points(u, v, false); diff --git a/misc/dist/ios_xcode/godot_ios/Images.xcassets/LaunchImage.launchimage/Contents.json b/misc/dist/ios_xcode/godot_ios/Images.xcassets/LaunchImage.launchimage/Contents.json index ce81d76027a..f3ac82189f3 100644 --- a/misc/dist/ios_xcode/godot_ios/Images.xcassets/LaunchImage.launchimage/Contents.json +++ b/misc/dist/ios_xcode/godot_ios/Images.xcassets/LaunchImage.launchimage/Contents.json @@ -99,4 +99,4 @@ "version" : 1, "author" : "xcode" } -} \ No newline at end of file +} diff --git a/misc/dist/uwp_template/AppxManifest.xml b/misc/dist/uwp_template/AppxManifest.xml index cf26387f22c..c25be4add26 100644 --- a/misc/dist/uwp_template/AppxManifest.xml +++ b/misc/dist/uwp_template/AppxManifest.xml @@ -29,4 +29,4 @@ - \ No newline at end of file + diff --git a/modules/gdnative/nativescript/api_generator.cpp b/modules/gdnative/nativescript/api_generator.cpp index 62f2ec5024d..ae0b5222f05 100644 --- a/modules/gdnative/nativescript/api_generator.cpp +++ b/modules/gdnative/nativescript/api_generator.cpp @@ -139,7 +139,7 @@ static String get_type_name(const PropertyInfo &info) { } /* - * Some comparison helper functions we need + * Some comparison helper functions we need */ struct MethodInfoComparator { diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 22e4d84e981..7d3ae315883 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -1963,7 +1963,7 @@ MonoObject *CSharpInstance::_internal_new_managed() { bool die = _unreference_owner_unsafe(); // Not ok for the owner to die here. If there is a situation where this can happen, it will be considered a bug. - CRASH_COND(die == true); + CRASH_COND(die); owner = nullptr; @@ -2298,7 +2298,7 @@ CSharpInstance::~CSharpInstance() { // Unreference the owner here, before the new "instance binding" references it. // Otherwise, the unsafe reference debug checks will incorrectly detect a bug. bool die = _unreference_owner_unsafe(); - CRASH_COND(die == true); // `owner_keep_alive` holds a reference, so it can't die + CRASH_COND(die); // `owner_keep_alive` holds a reference, so it can't die void *data = owner->get_script_instance_binding(CSharpLanguage::get_singleton()->get_language_index()); CRASH_COND(data == nullptr); @@ -3136,7 +3136,7 @@ CSharpInstance *CSharpScript::_create_instance(const Variant **p_args, int p_arg bool die = instance->_unreference_owner_unsafe(); // Not ok for the owner to die here. If there is a situation where this can happen, it will be considered a bug. - CRASH_COND(die == true); + CRASH_COND(die); p_owner->set_script_instance(nullptr); r_error.error = Callable::CallError::CALL_ERROR_INSTANCE_IS_NULL; diff --git a/modules/mono/editor/GodotTools/GodotTools.IdeMessaging.CLI/Program.cs b/modules/mono/editor/GodotTools/GodotTools.IdeMessaging.CLI/Program.cs index 99a55c471b9..4db71500da1 100644 --- a/modules/mono/editor/GodotTools/GodotTools.IdeMessaging.CLI/Program.cs +++ b/modules/mono/editor/GodotTools/GodotTools.IdeMessaging.CLI/Program.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Reflection; diff --git a/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs b/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs index affb2a47e79..ce2b378623a 100644 --- a/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs +++ b/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; using System.Runtime.InteropServices; using System.Runtime.InteropServices.ComTypes; diff --git a/platform/android/java/lib/res/layout/downloading_expansion.xml b/platform/android/java/lib/res/layout/downloading_expansion.xml index 4a9700965f1..34c27575984 100644 --- a/platform/android/java/lib/res/layout/downloading_expansion.xml +++ b/platform/android/java/lib/res/layout/downloading_expansion.xml @@ -162,4 +162,4 @@ - \ No newline at end of file + diff --git a/platform/android/java/lib/res/layout/status_bar_ongoing_event_progress_bar.xml b/platform/android/java/lib/res/layout/status_bar_ongoing_event_progress_bar.xml index fae1faeb602..426e1bd8418 100644 --- a/platform/android/java/lib/res/layout/status_bar_ongoing_event_progress_bar.xml +++ b/platform/android/java/lib/res/layout/status_bar_ongoing_event_progress_bar.xml @@ -105,4 +105,4 @@ - \ No newline at end of file + diff --git a/platform/android/java/lib/res/mipmap-anydpi-v26/icon.xml b/platform/android/java/lib/res/mipmap-anydpi-v26/icon.xml index 1ed40370353..cfdcca2ab58 100644 --- a/platform/android/java/lib/res/mipmap-anydpi-v26/icon.xml +++ b/platform/android/java/lib/res/mipmap-anydpi-v26/icon.xml @@ -2,4 +2,4 @@ - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-ar/strings.xml b/platform/android/java/lib/res/values-ar/strings.xml index 9f3dc6d6ac9..77cd61ea51d 100644 --- a/platform/android/java/lib/res/values-ar/strings.xml +++ b/platform/android/java/lib/res/values-ar/strings.xml @@ -1,4 +1,4 @@ godot-project-name-ar - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-bg/strings.xml b/platform/android/java/lib/res/values-bg/strings.xml index bd8109277ee..0f42d1f22b6 100644 --- a/platform/android/java/lib/res/values-bg/strings.xml +++ b/platform/android/java/lib/res/values-bg/strings.xml @@ -1,4 +1,4 @@ godot-project-name-bg - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-ca/strings.xml b/platform/android/java/lib/res/values-ca/strings.xml index 494cb884685..291a44d5e2e 100644 --- a/platform/android/java/lib/res/values-ca/strings.xml +++ b/platform/android/java/lib/res/values-ca/strings.xml @@ -1,4 +1,4 @@ godot-project-name-ca - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-cs/strings.xml b/platform/android/java/lib/res/values-cs/strings.xml index 30ce00f8952..83ff73e12a3 100644 --- a/platform/android/java/lib/res/values-cs/strings.xml +++ b/platform/android/java/lib/res/values-cs/strings.xml @@ -1,4 +1,4 @@ godot-project-name-cs - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-da/strings.xml b/platform/android/java/lib/res/values-da/strings.xml index 4c2a1cf0f45..fd251a7c90f 100644 --- a/platform/android/java/lib/res/values-da/strings.xml +++ b/platform/android/java/lib/res/values-da/strings.xml @@ -1,4 +1,4 @@ godot-project-name-da - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-de/strings.xml b/platform/android/java/lib/res/values-de/strings.xml index 52946d4cceb..f6e80b0b1ab 100644 --- a/platform/android/java/lib/res/values-de/strings.xml +++ b/platform/android/java/lib/res/values-de/strings.xml @@ -1,4 +1,4 @@ godot-project-name-de - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-el/strings.xml b/platform/android/java/lib/res/values-el/strings.xml index 181dc517628..adcdf13eb1c 100644 --- a/platform/android/java/lib/res/values-el/strings.xml +++ b/platform/android/java/lib/res/values-el/strings.xml @@ -1,4 +1,4 @@ godot-project-name-el - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-en/strings.xml b/platform/android/java/lib/res/values-en/strings.xml index 976a5650136..1b251c9ab65 100644 --- a/platform/android/java/lib/res/values-en/strings.xml +++ b/platform/android/java/lib/res/values-en/strings.xml @@ -1,4 +1,4 @@ godot-project-name-en - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-es-rES/strings.xml b/platform/android/java/lib/res/values-es-rES/strings.xml index 73f63a08f8b..b580a8270b1 100644 --- a/platform/android/java/lib/res/values-es-rES/strings.xml +++ b/platform/android/java/lib/res/values-es-rES/strings.xml @@ -1,4 +1,4 @@ godot-project-name-es_ES - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-es/strings.xml b/platform/android/java/lib/res/values-es/strings.xml index 07b718a6414..6aedd6870bc 100644 --- a/platform/android/java/lib/res/values-es/strings.xml +++ b/platform/android/java/lib/res/values-es/strings.xml @@ -1,4 +1,4 @@ godot-project-name-es - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-fi/strings.xml b/platform/android/java/lib/res/values-fi/strings.xml index 323d82aff14..bd7ef059ab6 100644 --- a/platform/android/java/lib/res/values-fi/strings.xml +++ b/platform/android/java/lib/res/values-fi/strings.xml @@ -1,4 +1,4 @@ godot-project-name-fi - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-fr/strings.xml b/platform/android/java/lib/res/values-fr/strings.xml index 32bead26615..03994099cf8 100644 --- a/platform/android/java/lib/res/values-fr/strings.xml +++ b/platform/android/java/lib/res/values-fr/strings.xml @@ -1,4 +1,4 @@ godot-project-name-fr - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-hi/strings.xml b/platform/android/java/lib/res/values-hi/strings.xml index 8aab2a8c63d..60d3b468618 100644 --- a/platform/android/java/lib/res/values-hi/strings.xml +++ b/platform/android/java/lib/res/values-hi/strings.xml @@ -1,4 +1,4 @@ godot-project-name-hi - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-hr/strings.xml b/platform/android/java/lib/res/values-hr/strings.xml index caf55e2241f..e552a6f6ec2 100644 --- a/platform/android/java/lib/res/values-hr/strings.xml +++ b/platform/android/java/lib/res/values-hr/strings.xml @@ -1,4 +1,4 @@ godot-project-name-hr - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-hu/strings.xml b/platform/android/java/lib/res/values-hu/strings.xml index e7f9e51226f..ed21411acbd 100644 --- a/platform/android/java/lib/res/values-hu/strings.xml +++ b/platform/android/java/lib/res/values-hu/strings.xml @@ -1,4 +1,4 @@ godot-project-name-hu - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-in/strings.xml b/platform/android/java/lib/res/values-in/strings.xml index 9e9a8b0c03f..169b65decb7 100644 --- a/platform/android/java/lib/res/values-in/strings.xml +++ b/platform/android/java/lib/res/values-in/strings.xml @@ -1,4 +1,4 @@ godot-project-name-id - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-it/strings.xml b/platform/android/java/lib/res/values-it/strings.xml index 1f5e5a049e6..880b87e030b 100644 --- a/platform/android/java/lib/res/values-it/strings.xml +++ b/platform/android/java/lib/res/values-it/strings.xml @@ -1,4 +1,4 @@ godot-project-name-it - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-iw/strings.xml b/platform/android/java/lib/res/values-iw/strings.xml index f52ede20855..b4826798c7e 100644 --- a/platform/android/java/lib/res/values-iw/strings.xml +++ b/platform/android/java/lib/res/values-iw/strings.xml @@ -1,4 +1,4 @@ godot-project-name-he - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-ja/strings.xml b/platform/android/java/lib/res/values-ja/strings.xml index 7f85f57df75..27d3ba521ee 100644 --- a/platform/android/java/lib/res/values-ja/strings.xml +++ b/platform/android/java/lib/res/values-ja/strings.xml @@ -1,4 +1,4 @@ godot-project-name-ja - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-ko/strings.xml b/platform/android/java/lib/res/values-ko/strings.xml index fab0bdd753a..efc5c7e015d 100644 --- a/platform/android/java/lib/res/values-ko/strings.xml +++ b/platform/android/java/lib/res/values-ko/strings.xml @@ -52,4 +52,4 @@ %1$s KB/s 남은 시간: %1$s %1$s 남음 - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-lt/strings.xml b/platform/android/java/lib/res/values-lt/strings.xml index 6e3677fde74..10a93926db0 100644 --- a/platform/android/java/lib/res/values-lt/strings.xml +++ b/platform/android/java/lib/res/values-lt/strings.xml @@ -1,4 +1,4 @@ godot-project-name-lt - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-lv/strings.xml b/platform/android/java/lib/res/values-lv/strings.xml index 701fc271ac2..4f230b97f87 100644 --- a/platform/android/java/lib/res/values-lv/strings.xml +++ b/platform/android/java/lib/res/values-lv/strings.xml @@ -1,4 +1,4 @@ godot-project-name-lv - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-nb/strings.xml b/platform/android/java/lib/res/values-nb/strings.xml index 73147ca1af3..a85a3da39a4 100644 --- a/platform/android/java/lib/res/values-nb/strings.xml +++ b/platform/android/java/lib/res/values-nb/strings.xml @@ -1,4 +1,4 @@ godot-project-name-nb - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-nl/strings.xml b/platform/android/java/lib/res/values-nl/strings.xml index e501928a354..c459f643976 100644 --- a/platform/android/java/lib/res/values-nl/strings.xml +++ b/platform/android/java/lib/res/values-nl/strings.xml @@ -1,4 +1,4 @@ godot-project-name-nl - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-pl/strings.xml b/platform/android/java/lib/res/values-pl/strings.xml index ea5da73b6f3..34a846cc78b 100644 --- a/platform/android/java/lib/res/values-pl/strings.xml +++ b/platform/android/java/lib/res/values-pl/strings.xml @@ -1,4 +1,4 @@ godot-project-name-pl - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-pt/strings.xml b/platform/android/java/lib/res/values-pt/strings.xml index bdda7cd2c7f..5f7a875eb54 100644 --- a/platform/android/java/lib/res/values-pt/strings.xml +++ b/platform/android/java/lib/res/values-pt/strings.xml @@ -1,4 +1,4 @@ godot-project-name-pt - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-ro/strings.xml b/platform/android/java/lib/res/values-ro/strings.xml index 3686da4c192..de990e789be 100644 --- a/platform/android/java/lib/res/values-ro/strings.xml +++ b/platform/android/java/lib/res/values-ro/strings.xml @@ -1,4 +1,4 @@ godot-project-name-ro - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-ru/strings.xml b/platform/android/java/lib/res/values-ru/strings.xml index 954067658bc..73d8a27443c 100644 --- a/platform/android/java/lib/res/values-ru/strings.xml +++ b/platform/android/java/lib/res/values-ru/strings.xml @@ -1,4 +1,4 @@ godot-project-name-ru - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-sk/strings.xml b/platform/android/java/lib/res/values-sk/strings.xml index 37d1283124b..053960efeda 100644 --- a/platform/android/java/lib/res/values-sk/strings.xml +++ b/platform/android/java/lib/res/values-sk/strings.xml @@ -1,4 +1,4 @@ godot-project-name-sk - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-sl/strings.xml b/platform/android/java/lib/res/values-sl/strings.xml index 0bb249c3756..d6dff8289a0 100644 --- a/platform/android/java/lib/res/values-sl/strings.xml +++ b/platform/android/java/lib/res/values-sl/strings.xml @@ -1,4 +1,4 @@ godot-project-name-sl - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-sr/strings.xml b/platform/android/java/lib/res/values-sr/strings.xml index 0e83cab1a13..b7e79e89ea8 100644 --- a/platform/android/java/lib/res/values-sr/strings.xml +++ b/platform/android/java/lib/res/values-sr/strings.xml @@ -1,4 +1,4 @@ godot-project-name-sr - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-sv/strings.xml b/platform/android/java/lib/res/values-sv/strings.xml index e3a04ac2ec3..9436c3870ac 100644 --- a/platform/android/java/lib/res/values-sv/strings.xml +++ b/platform/android/java/lib/res/values-sv/strings.xml @@ -1,4 +1,4 @@ godot-project-name-sv - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-th/strings.xml b/platform/android/java/lib/res/values-th/strings.xml index 0aa893b8bf0..629d77b9c25 100644 --- a/platform/android/java/lib/res/values-th/strings.xml +++ b/platform/android/java/lib/res/values-th/strings.xml @@ -1,4 +1,4 @@ godot-project-name-th - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-tl/strings.xml b/platform/android/java/lib/res/values-tl/strings.xml index e7e2af49090..f8832d6b1fb 100644 --- a/platform/android/java/lib/res/values-tl/strings.xml +++ b/platform/android/java/lib/res/values-tl/strings.xml @@ -1,4 +1,4 @@ godot-project-name-tl - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-tr/strings.xml b/platform/android/java/lib/res/values-tr/strings.xml index 97af1243a63..f3a8f57de46 100644 --- a/platform/android/java/lib/res/values-tr/strings.xml +++ b/platform/android/java/lib/res/values-tr/strings.xml @@ -1,4 +1,4 @@ godot-project-name-tr - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-uk/strings.xml b/platform/android/java/lib/res/values-uk/strings.xml index 3dea6908a9e..8ba2bf86aa6 100644 --- a/platform/android/java/lib/res/values-uk/strings.xml +++ b/platform/android/java/lib/res/values-uk/strings.xml @@ -1,4 +1,4 @@ godot-project-name-uk - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values-vi/strings.xml b/platform/android/java/lib/res/values-vi/strings.xml index a6552130b08..8bf063ed823 100644 --- a/platform/android/java/lib/res/values-vi/strings.xml +++ b/platform/android/java/lib/res/values-vi/strings.xml @@ -1,4 +1,4 @@ godot-project-name-vi - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values/strings.xml b/platform/android/java/lib/res/values/strings.xml index a1b81a61861..590b066d8ab 100644 --- a/platform/android/java/lib/res/values/strings.xml +++ b/platform/android/java/lib/res/values/strings.xml @@ -52,4 +52,4 @@ %1$s KB/s Time remaining: %1$s %1$s left - \ No newline at end of file + diff --git a/platform/android/java/lib/res/values/styles.xml b/platform/android/java/lib/res/values/styles.xml index a442f61e7e9..b798373bc66 100644 --- a/platform/android/java/lib/res/values/styles.xml +++ b/platform/android/java/lib/res/values/styles.xml @@ -22,4 +22,4 @@ @android:color/background_dark - \ No newline at end of file + diff --git a/platform/osx/os_osx.mm b/platform/osx/os_osx.mm index 4ca89ff4b2d..c4eb5407af0 100644 --- a/platform/osx/os_osx.mm +++ b/platform/osx/os_osx.mm @@ -320,7 +320,7 @@ void OS_OSX::run() { } joypad_osx->process_joypads(); - if (Main::iteration() == true) { + if (Main::iteration()) { quit = true; } } @catch (NSException *exception) { From 16f7b464b689fe2ed00c5ff2949df030eed61238 Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Mon, 13 Jul 2020 01:53:54 -0400 Subject: [PATCH 4/4] Remove Travis CI style checks and unnecessary scripts --- .travis.yml | 30 ++--------- misc/scripts/fix_headers.py | 102 ------------------------------------ misc/scripts/fix_style.sh | 78 --------------------------- misc/travis/black-format.sh | 48 ----------------- misc/travis/clang-format.sh | 48 ----------------- 5 files changed, 5 insertions(+), 301 deletions(-) delete mode 100755 misc/scripts/fix_headers.py delete mode 100755 misc/scripts/fix_style.sh delete mode 100755 misc/travis/black-format.sh delete mode 100755 misc/travis/clang-format.sh diff --git a/.travis.yml b/.travis.yml index 2639cf96614..9c085d4ce04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,16 +19,6 @@ cache: matrix: include: - - name: Static checks (clang-format) + Documentation checks - stage: build - env: STATIC_CHECKS=yes - os: linux - compiler: gcc - addons: - apt: - packages: - - clang-format-8 - - name: Linux editor (debug, GCC 9, with Mono) stage: build env: PLATFORM=linuxbsd TOOLS=yes TARGET=debug CACHE_NAME=${PLATFORM}-tools-mono-gcc-9 MATRIX_EVAL="CC=gcc-9 && CXX=g++-9" EXTRA_ARGS="module_mono_enabled=yes mono_glue=no warnings=extra werror=yes" @@ -130,10 +120,6 @@ install: ./emsdk/emsdk install latest; ./emsdk/emsdk activate --no-embedded latest; fi - - if [ "$STATIC_CHECKS" = "yes" ]; then - unset SCONS_CACHE; - pip3 install --user black pygments; - fi before_script: - if [ "$PLATFORM" = "android" ]; then @@ -142,15 +128,9 @@ before_script: fi script: - - if [ "$STATIC_CHECKS" = "yes" ]; then - sh ./misc/travis/clang-format.sh && - sh ./misc/travis/black-format.sh && - doc/tools/makerst.py --dry-run doc/classes modules; - else - scons -j2 CC=$CC CXX=$CXX platform=$PLATFORM tools=$TOOLS target=$TARGET $OPTIONS $EXTRA_ARGS && - if [ "$TEST_PROJECT" = "yes" ]; then - git clone --depth 1 "https://github.com/godotengine/godot-tests.git"; - sed -i "s:custom_template/release=\"\":custom_template/release=\"$(readlink -e bin/godot_server.linuxbsd.opt.tools.64)\":" godot-tests/tests/project_export/export_presets.cfg; - godot-tests/tests/project_export/test_project.sh "bin/godot_server.linuxbsd.opt.tools.64"; - fi + - scons -j2 CC=$CC CXX=$CXX platform=$PLATFORM tools=$TOOLS target=$TARGET $OPTIONS $EXTRA_ARGS && + if [ "$TEST_PROJECT" = "yes" ]; then + git clone --depth 1 "https://github.com/godotengine/godot-tests.git"; + sed -i "s:custom_template/release=\"\":custom_template/release=\"$(readlink -e bin/godot_server.linuxbsd.opt.tools.64)\":" godot-tests/tests/project_export/export_presets.cfg; + godot-tests/tests/project_export/test_project.sh "bin/godot_server.linuxbsd.opt.tools.64"; fi diff --git a/misc/scripts/fix_headers.py b/misc/scripts/fix_headers.py deleted file mode 100755 index 7af97eec4bb..00000000000 --- a/misc/scripts/fix_headers.py +++ /dev/null @@ -1,102 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -header = """\ -/*************************************************************************/ -/* $filename */ -/*************************************************************************/ -/* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ -/*************************************************************************/ -/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */ -/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */ -/* */ -/* Permission is hereby granted, free of charge, to any person obtaining */ -/* a copy of this software and associated documentation files (the */ -/* "Software"), to deal in the Software without restriction, including */ -/* without limitation the rights to use, copy, modify, merge, publish, */ -/* distribute, sublicense, and/or sell copies of the Software, and to */ -/* permit persons to whom the Software is furnished to do so, subject to */ -/* the following conditions: */ -/* */ -/* The above copyright notice and this permission notice shall be */ -/* included in all copies or substantial portions of the Software. */ -/* */ -/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ -/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ -/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ -/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ -/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ -/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ -/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/*************************************************************************/ -""" - -files = open("files", "r") - -fname = files.readline() - -while fname != "": - - # Handle replacing $filename with actual filename and keep alignment - fsingle = fname.strip() - if fsingle.find("/") != -1: - fsingle = fsingle[fsingle.rfind("/") + 1 :] - rep_fl = "$filename" - rep_fi = fsingle - len_fl = len(rep_fl) - len_fi = len(rep_fi) - # Pad with spaces to keep alignment - if len_fi < len_fl: - for x in range(len_fl - len_fi): - rep_fi += " " - elif len_fl < len_fi: - for x in range(len_fi - len_fl): - rep_fl += " " - if header.find(rep_fl) != -1: - text = header.replace(rep_fl, rep_fi) - else: - text = header.replace("$filename", fsingle) - text += "\n" - - # We now have the proper header, so we want to ignore the one in the original file - # and potentially empty lines and badly formatted lines, while keeping comments that - # come after the header, and then keep everything non-header unchanged. - # To do so, we skip empty lines that may be at the top in a first pass. - # In a second pass, we skip all consecutive comment lines starting with "/*", - # then we can append the rest (step 2). - - fileread = open(fname.strip(), "r") - line = fileread.readline() - header_done = False - - while line.strip() == "": # Skip empty lines at the top - line = fileread.readline() - - if line.find("/**********") == -1: # Godot header starts this way - # Maybe starting with a non-Godot comment, abort header magic - header_done = True - - while not header_done: # Handle header now - if line.find("/*") != 0: # No more starting with a comment - header_done = True - if line.strip() != "": - text += line - line = fileread.readline() - - while line != "": # Dump everything until EOF - text += line - line = fileread.readline() - - fileread.close() - - # Write - filewrite = open(fname.strip(), "w") - filewrite.write(text) - filewrite.close() - - # Next file - fname = files.readline() - -files.close() diff --git a/misc/scripts/fix_style.sh b/misc/scripts/fix_style.sh deleted file mode 100755 index 2eee61a4594..00000000000 --- a/misc/scripts/fix_style.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env bash - -# Command line arguments -run_black=false -run_clang_format=false -run_fix_headers=false -usage="Invalid argument. Usage:\n$0