Skip to content

This godot plugin adds extra features and improvements related to the inspector. It's mainly for c#.

Notifications You must be signed in to change notification settings

OlliO6/Better-inspector-godot-CSharp

Repository files navigation

Better inspector godot

Main features:

This plugin adds extra features and improvements related to the inspector. It's mainly for c# and the 'Typed' features are also supporting c# types.

Setup

Just copy the addons folder in your Godot mono project.

Copy this your ProjectName.csproj file.

<ItemGroup>
    <ProjectReference Include="addons/BetterInspector/Quick References/ReferencesGenerator/ReferencesGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
    <Compile Remove="addons/BetterInspector/Quick References/ReferencesGenerator/**" />
</ItemGroup>

And set the TargetFramework to netstandart2.1 or 2.0

<TargetFramework>netstandard2.1</TargetFramework>

In your scripts you want this.

using BetterInspector;

Typed node paths

If you have an exported node path and you want it to point to a specific type of node you can use the TypedPath(Type) attribute.

[Export, TypedPath(typeof(AnimationPlayer))]  
private NodePath animPath;

You can even use unusual types like interfaces.

It will look like thhis in the inspector.

Alt text

An extra feature of this is the select button. Click on it and the node where the path is pointing to will get selected.

Quick node refernces

Ita really annoying to write this kind of stuff a million times.

[Export, TypedPath(typeof(AnimationPlayer))]
private NodePath _animPlayer;

public AnimationPlayer animPlayer;

public override void _Ready()
{
    animPlayer = GetNode<AnimationPlayer>(_animPlayer);
}

So i implemented a source code generator that does that stuff automatically for you.
With it you can just do this instead.

[NodeRef] public AnimationPlayer animPlayer;

This will export a typed node path with the type of the field and assign the field on ready.
To avoid having a cluddered inspector it will put those node paths in a foldout called 'References' unless you don't set the foldout field to something different. If you don't want it to be in a foldout set it to "".

[Reference(foldout = "")]

You need to add the partial modifier to your class when you use this feature and you can't longer override the _Ready function.
Instead you can do this:

partial void OnReady()

Foldouts

In Godot there's no easy or good way to put a field into a foldout in the inspector.

With this addon there are some attributes exactly for that.

You can use the [StartFoldout(string name)] in combination with the [EndFoldout] attribute to define that a range of exported properties is in an foldout.

There's also the [InFoldout(string name)] attribute that puts just the property applied on in a foldout.

Example:

[Export, StartFoldout("Movement")] private float groundedSpeed;      // Is in the foldout
[Export] private float airSpeed;                                     // Also is in the foldout
[Export] private float jumpHeight;                                   // Also is in the foldout
[Export, EndFoldout] private bool canCrouch;                         // Is the last entry of the foldout

[Export] private Weapon startWeapon;                                 // Is not in any foldouts

[Export, InFoldout("Movement")] private bool allowJump, allowSprint; // Both fields will be in the movement foldout

Alt text

The foldout will be created at the position where the first property made it in via [StartFoldout(string name)] or [InFoldout(string name)] but you may want the foldout to be always at the bottom or the top.
To do that you can give the attribute where the fouldout gets created a additional parameter called position.

[StartFoldout("Movement", position = FoldoutPosition.Bottom)]

Now the foldout will be at the bottom (under startWeapon in this example).

You can also start and end a foldout by giving properties special names (Mainly for GDScript)

export var _StartF_AtBottom_Movement
export var groundedSpeed : float
export var airSpeed : float
export var jumpHeight : float
export var canCrouch : bool
export var _EndF_Movement

export var startWeapon : Weapon

C# Resource Picker

When you have a resource class for example this one:

public class Weapon : Resource
{
    [Export] public string name;
    [Export] public int rarity;
}

And you try to make a exported reference of that type.

[Export] private Weapon weapon;

The resource picker (the popup menu where you can choose between resource types) will have all of the Godot recognized resources. But not the New Weapon option.

However if this plugin is enabled it will only show the New Weapon option (and also a option for things that inherits from Weapon). If Weapon is a abstract class it will only show inherited types.

You will just need to add the [ResourceScriptPath(string path)] attribute to the Weapon class and assign the path tho the script. Or you just use the [Resource] attribute and let it automatically generate the [ResourceScriptPath(string path)] attribute. Wich is better not only because its easier to write but also because it will automatically update if you move the script in a different folder.

[Resource]
public class Weapon : Resource
{
    [Export] public string name;
    [Export] public int rarity;
}

Alt text

The resource will also be recognized by Godot via AddCustomType.

Limitations/Known Issues:

  • Most stuff won't correctly work if nested in a list or dictionary.

About

This godot plugin adds extra features and improvements related to the inspector. It's mainly for c#.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages