Tomasz Chabora
Tomasz Chabora
Renamed to TilesEditorUtils.
These plugins are not exposed, so they can be renamed at any time.
Changing color mode to Resources has no effect on built-in resources. EDIT: Though looking at the code, it does not make sense 🤔
External Resources coloring does not work if the external resource is inside internal resource (e.g. AtlasTexture with texture). Nor sure if intended 🤔
I'm confused about this API tbh. From what I understand, it allows creating custom "property arrays", which is basically a set of properties linked by common prefix and indices in...
Shouldn't this be determined by `owner` instead of internal children? I don't really get why the internal nodes even get duplicated. Then again, I doubt anyone would be intentionally owning...
What I mean is that internal mode's only purpose is to "hide" nodes from the user (`get_children()` etc. ignores them by default). Duplicating instances should only be affected by node's...
Not in this PR, and that would likely require a proposal. It's easier to maintain a class if it's internal.
They could be added to ClassDB, but not sure how to resolve setters/getters then. I made them use `callable_mp()`, because it's faster than calling them by name, and it requires...
I added a static PropertyListHelper that registers properties and then instances are created for actual objects. It uses regular Callables though.