Skip to content

Commit e1073bc

Browse files
authored
Merge pull request #1210 from godot-rust/qol/workaround-godot-break
Work around breaking change in GDExtension API (`VisualShader` class)
2 parents 7a1c48a + b2d0f76 commit e1073bc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

godot-codegen/src/special_cases/special_cases.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ pub fn is_class_method_deleted(class_name: &TyName, method: &JsonClassMethod, ct
6565
| ("VisualShaderNodeComment", "get_title")
6666
| ("VisualShaderNodeComment", "set_description")
6767
| ("VisualShaderNodeComment", "get_description")
68+
69+
// Removed in https://github.com/godotengine/godot/pull/98566
70+
| ("VisualShader", "set_graph_offset")
71+
| ("VisualShader", "get_graph_offset")
6872
=> true,
6973

7074
// Thread APIs

0 commit comments

Comments
 (0)