We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ae2d36 commit 52b198aCopy full SHA for 52b198a
godot-codegen/src/special_cases/special_cases.rs
@@ -773,7 +773,11 @@ pub fn get_class_extra_docs(class_name: &TyName) -> Option<&'static str> {
773
"ScriptExtension" => {
774
Some("Use this in combination with the [`obj::script` module][crate::obj::script].")
775
}
776
-
+ "ResourceFormatLoader" => {
777
+ Some("Enable the `experimental-threads` feature when using custom `ResourceFormatLoader`s. \
778
+ Otherwise the application will panic when the custom `ResourceFormatLoader` is used by Godot \
779
+ in a thread other than the main thread.")
780
+ }
781
_ => None,
782
783
0 commit comments