mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Merge pull request #89324 from KoBeWi/pandora's_can_of_worms
Allow exporting variables of type Variant
This commit is contained in:
commit
c87f23ce7d
5 changed files with 127 additions and 12 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue