Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

Good ideas - I will think about them. Adding more ways to resize nodes might be a bit too complicated though. And right now I'm not really sure how to interpret point 1.

Point 4 is already possible to do yourself if you have connected pro - you can add new node types (see documentation). Create a new entry in DefsStandard.json and a new C# file in the Config folder.  If necessary you can also add another C# file in the Execution folder. The config C# file could look like this, for example:

using RatKing.Connected.Config;
[NodeConfigType("lbl")]
public class NodeConfig_Label : NodeConfig {
    public override void Build(IBuildableNode node, CreationMode creationMode) {
        node.SetNodeTitle("Label");
        node.SetNodeWidth(220, 800); // it's resizable!
        node.SetNodeHeight(90, 600);
        node.TypeString("value", "Value);
    }
}

What do you mean by "no box"?

(+1)

I do have Pro, I will have to try and make some stuff, honestly forgot about that feature :)

Understandable, the resize points are more just convenience and a time saver then necessary.

As for zoom/point 1 right now zoom levels go 10% - 20% - 30% - etc, I am hoping it could be possible to have 5% and/or 1% zoom increment levels through a setting or key combo. 

Thanks for explaining - I'll see what I can do about finer zooming when I'll have the time to work on connected again!