Updated the minsize profile and fixed svgs not being visible

master
Wynd 2026-01-25 01:34:15 +02:00
parent a885fbf1af
commit 9e63e85a33
3 changed files with 30 additions and 2 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
/android/ /android/
builds/ builds/
export_templates/ export_templates/
**/logs

View File

@ -13,17 +13,20 @@
"module_godot_physics_2d_enabled": false, "module_godot_physics_2d_enabled": false,
"module_godot_physics_3d_enabled": false, "module_godot_physics_3d_enabled": false,
"module_jolt_physics_enabled": false, "module_jolt_physics_enabled": false,
"module_msdfgen_enabled": false,
"module_openxr_enabled": false, "module_openxr_enabled": false,
"rendering_device": false, "rendering_device": false,
"vulkan": false "vulkan": false
}, },
"disabled_classes": [ "disabled_classes": [
"AnimatedTexture",
"Animation", "Animation",
"AnimationLibrary", "AnimationLibrary",
"AnimationMixer", "AnimationMixer",
"AnimationNode", "AnimationNode",
"AnimationNodeStateMachinePlayback", "AnimationNodeStateMachinePlayback",
"AnimationNodeStateMachineTransition", "AnimationNodeStateMachineTransition",
"AtlasTexture",
"AudioBusLayout", "AudioBusLayout",
"AudioEffect", "AudioEffect",
"AudioStream", "AudioStream",
@ -33,8 +36,10 @@
"BoneMap", "BoneMap",
"ButtonGroup", "ButtonGroup",
"CameraAttributes", "CameraAttributes",
"CameraTexture",
"CanvasItemMaterial", "CanvasItemMaterial",
"CanvasLayer", "CanvasLayer",
"CanvasTexture",
"ColorPalette", "ColorPalette",
"Compositor", "Compositor",
"CompositorEffect", "CompositorEffect",
@ -42,7 +47,11 @@
"Curve", "Curve",
"Curve2D", "Curve2D",
"Curve3D", "Curve3D",
"CurveTexture",
"CurveXYZTexture",
"DPITexture",
"Environment", "Environment",
"ExternalTexture",
"FogMaterial", "FogMaterial",
"FoldableGroup", "FoldableGroup",
"GDExtension", "GDExtension",
@ -63,13 +72,18 @@
"GLTFState", "GLTFState",
"GLTFTexture", "GLTFTexture",
"GLTFTextureSampler", "GLTFTextureSampler",
"Gradient",
"GradientTexture1D",
"GradientTexture2D",
"HTTPRequest", "HTTPRequest",
"ImporterMesh",
"InstancePlaceholder", "InstancePlaceholder",
"JSON", "JSON",
"LabelSettings", "LabelSettings",
"LightmapGIData", "LightmapGIData",
"Mesh", "Mesh",
"MeshLibrary", "MeshLibrary",
"MeshTexture",
"MultiMesh", "MultiMesh",
"MultiplayerSpawner", "MultiplayerSpawner",
"MultiplayerSynchronizer", "MultiplayerSynchronizer",
@ -82,6 +96,7 @@
"Node2D", "Node2D",
"Node3D", "Node3D",
"Noise", "Noise",
"NoiseTexture2D",
"Occluder3D", "Occluder3D",
"OccluderPolygon2D", "OccluderPolygon2D",
"OggPacketSequence", "OggPacketSequence",
@ -98,9 +113,13 @@
"PhysicalSkyMaterial", "PhysicalSkyMaterial",
"PhysicsMaterial", "PhysicsMaterial",
"PlaceholderMaterial", "PlaceholderMaterial",
"PlaceholderTexture2D",
"PolygonPathFinder",
"PortableCompressedTexture2D",
"ProceduralSkyMaterial", "ProceduralSkyMaterial",
"RDShaderFile", "RDShaderFile",
"RDShaderSPIRV", "RDShaderSPIRV",
"SceneReplicationConfig",
"Shape2D", "Shape2D",
"Shape3D", "Shape3D",
"SkeletonModification2D", "SkeletonModification2D",
@ -110,15 +129,17 @@
"Sky", "Sky",
"SpriteFrames", "SpriteFrames",
"StyleBoxEmpty", "StyleBoxEmpty",
"StyleBoxLine",
"StyleBoxTexture", "StyleBoxTexture",
"SyntaxHighlighter", "SyntaxHighlighter",
"Texture", "Texture2DRD",
"Texture3D",
"TextureLayered",
"TileMapPattern", "TileMapPattern",
"TileSet", "TileSet",
"TileSetSource", "TileSetSource",
"VideoStream", "VideoStream",
"VideoStreamPlayback", "VideoStreamPlayback",
"ViewportTexture",
"VisualShaderNodeBillboard", "VisualShaderNodeBillboard",
"VisualShaderNodeBooleanParameter", "VisualShaderNodeBooleanParameter",
"VisualShaderNodeClamp", "VisualShaderNodeClamp",
@ -193,6 +214,7 @@
"VoxelGIData", "VoxelGIData",
"World2D", "World2D",
"World3D", "World3D",
"WorldEnvironment",
"X509Certificate" "X509Certificate"
], ],
"type": "build_profile" "type": "build_profile"

View File

@ -8,12 +8,17 @@ use_volk = "no"
openxr = "no" openxr = "no"
minizip = "no" minizip = "no"
graphite = "no" graphite = "no"
modules_enabled_by_default = "no" modules_enabled_by_default = "no"
module_gdscript_enabled = "yes" module_gdscript_enabled = "yes"
module_text_server_fb_enabled = "yes" module_text_server_fb_enabled = "yes"
module_freetype_enabled = "yes" module_freetype_enabled = "yes"
module_svg_enabled = "yes" module_svg_enabled = "yes"
module_webp_enabled = "yes"
disable_3d = "yes" disable_3d = "yes"
disable_navigation_2d = "yes" disable_navigation_2d = "yes"
disable_navigation_3d = "yes" disable_navigation_3d = "yes"
disable_xr = "yes" disable_xr = "yes"
disable_physics_2d = "yes"
disable_physics_3d = "yes"