Giter Club home page Giter Club logo

better-inspector-godot-csharp's Introduction

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.

better-inspector-godot-csharp's People

Contributors

ollio6 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.