Merge pull request #89324 from KoBeWi/pandora's_can_of_worms

Allow exporting variables of type Variant
This commit is contained in:
Thaddeus Crews 2025-04-28 10:01:33 -05:00
commit c87f23ce7d
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
5 changed files with 127 additions and 12 deletions

View file

@ -10,6 +10,11 @@ namespace GodotTools.Inspector
{
public override bool _CanHandle(GodotObject godotObject)
{
if (godotObject == null)
{
return false;
}
foreach (var script in EnumerateScripts(godotObject))
{
if (script is CSharpScript)