SceneGate / Yarhl

Framework for the implementation of format converters like game assets or media files
https://scenegate.github.io/Yarhl/
MIT License
60 stars 10 forks source link

✨ ChangeFormat fluent style returning itself #202

Closed pleonex closed 9 months ago

pleonex commented 9 months ago

Return the same node when calling ChangeFormat to allow method chaining.

This PR closes #196

Quality check list

Acceptance criteria

Follow-up work

Further improvements will continue in #195 with an overload to import files.

Example

using var node = new Node("node")
    .ChangeFormat(binFormat)
    .TransformWith<Binary2Po>();