base system

This commit is contained in:
redglow
2026-07-17 10:03:01 +02:00
parent 96fffb2f9e
commit 90f227d794
12 changed files with 87 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#if TOOLS
using Godot;
using GodotHostTest.addons.godot_di;
namespace GodotHostTest.GodotDI;
[Tool]
public partial class GodotDI : EditorPlugin
{
private ScopeInspectorPlugin? _plugin;
public override void _EnterTree()
{
GD.Print("Initializing Godot DI");
_plugin = new ScopeInspectorPlugin();
AddInspectorPlugin(_plugin);
}
public override void _ExitTree()
{
GD.Print("Deinitializing Godot DI");
RemoveInspectorPlugin(_plugin);
_plugin?.Dispose();
_plugin = null;
}
}
#endif
+1
View File
@@ -0,0 +1 @@
uid://dtvb8nb6d2j4m
@@ -0,0 +1 @@
uid://brjpccpd5ta6x
+1
View File
@@ -0,0 +1 @@
uid://db526cjmnd4q7
@@ -0,0 +1 @@
uid://cl7d2h5juc2gh
+1
View File
@@ -0,0 +1 @@
uid://cy4jjk14my305
+1
View File
@@ -0,0 +1 @@
uid://dgxakmyv77lcu
+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="#e0e0e0" d="M15 14a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-1h14zM3 12H1V4h2zM12 4v2l-6 6H4v-2l6-6zM15 12h-2V4h2zM14 1a1 1 0 0 1 1 1v1H1V2a1 1 0 0 1 1-1z"/></svg>

After

Width:  |  Height:  |  Size: 259 B

+43
View File
@@ -0,0 +1,43 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ce5hi46doaiv8"
path="res://.godot/imported/ServiceSource.svg-ca2976082d4f895e226f23d45377b764.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://addons/GodotDI/ServiceSource.svg"
dest_files=["res://.godot/imported/ServiceSource.svg-ca2976082d4f895e226f23d45377b764.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=1.0
editor/scale_with_editor_scale=false
editor/convert_colors_with_editor_theme=false
+7
View File
@@ -0,0 +1,7 @@
[plugin]
name="GodotDI"
description=""
author="owof games"
version="0.1"
script="GodotDI.cs"