RedMser

Results 110 comments of RedMser

I can see where you're coming from, but I really don't like the thought of having the list of configuration info populated from multiple different sources. It's already tedious to...

#99676 should already do what you want (arbitrarily remap color channels of a texture at import-time).

Is there a proposal for this change? Removing working features (the menu entries in this case) is always something controversial and it needs a good reason and many users agreeing...

Thanks for the PR! You need to open a [design proposal](https://github.com/godotengine/godot-proposals) as well, since this is not a bug fix but rather a (breaking) change in behavior. It's especially important...

> I simply realized that parsing json data behaves differently between 4.3 to 4.4. Ah gotcha! 4.4 made it so stringifying floats always appends the `.0` now, instead of only...

@arkology You probably wanted to refer to the ["Standard Template Library" headline](https://docs.godotengine.org/en/stable/contributing/development/cpp_usage_guidelines.html#disallowed-features), not the one regarding the "auto" keyword? ^^ But yeah, Godot codebase does not accept `std::tuple`, so this...

> I don't know if this is an oversee or the intended behavior It seems to be intended, as it's part of the list of "force-exported" files: https://github.com/godotengine/godot/blob/8ff821670561466a5ff72044ad574dcb955b66c2/editor/export/editor_export_platform.cpp#L871-L871 As a...

Is this fixed now that https://github.com/godotengine/godot/pull/82084 is merged? You can test it in Godot 4.3 dev 4

CodeHighlighter inherits from [SyntaxHighlighter](https://docs.godotengine.org/en/stable/classes/class_syntaxhighlighter.html#class-syntaxhighlighter) which provides this exact API that you want - column numbers and color values per line.

Your custom highlighter class should implement the virtual methods, among them is `_get_line_syntax_highlighting`. The documentation of the corresponding `get_line_syntax_highlighting` method (without the underscore) shows how the returned data should be...