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

✨ Implement node renaming #200

Closed pleonex closed 9 months ago

pleonex commented 9 months ago

Implement a setter to the Name property of nodes, so we can change their names. Added a note to the Path property as it may change in parent affecting children. It shouldn't be stored as keys in dictionaries for instance.

This PR closes #193

Quality check list

Acceptance criteria

Follow-up work

None

Example

using node = new Node("node1");
node.Name = "node2";