godot-rust / gdnative

Rust bindings for Godot 3
https://godot-rust.github.io
MIT License
3.62k stars 210 forks source link

Avoid partial repeats of the generated enum names #991

Closed chitoyuu closed 1 year ago

chitoyuu commented 1 year ago

Check whether the start of the variant name is equal to the end of the enum name and if so, don't repeat it. For example, ImageFormat::Rgb8 instead of ImageFormat::FormatRgb8.

chitoyuu commented 1 year ago

Originally created during survey of commented code (#377). Actually it appears that this has already been fixed: Format::RGB8

Closing as already solved.