File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,19 +42,19 @@ use crate::obj::Gd;
42
42
// Reminder: remove #![allow(deprecated)] in utilities.test along with the below functions.
43
43
44
44
#[ deprecated = "Instance utilities in `godot::global` will be removed. Use methods on `Gd` and `InstanceId` instead.\n \
45
- For detailed reasons, see https://github.com/godot-rust/gdext/pull/892 ."]
45
+ For detailed reasons, see https://github.com/godot-rust/gdext/pull/901 ."]
46
46
pub fn instance_from_id ( instance_id : i64 ) -> Option < Gd < crate :: classes:: Object > > {
47
47
crate :: gen:: utilities:: instance_from_id ( instance_id)
48
48
}
49
49
50
50
#[ deprecated = "Instance utilities in `godot::global` will be removed. Use methods on `Gd` and `InstanceId` instead.\n \
51
- For detailed reasons, see https://github.com/godot-rust/gdext/pull/892 ."]
51
+ For detailed reasons, see https://github.com/godot-rust/gdext/pull/901 ."]
52
52
pub fn is_instance_valid ( instance : Variant ) -> bool {
53
53
crate :: gen:: utilities:: is_instance_valid ( & instance)
54
54
}
55
55
56
56
#[ deprecated = "Instance utilities in `godot::global` will be removed. Use methods on `Gd` and `InstanceId` instead.\n \
57
- For detailed reasons, see https://github.com/godot-rust/gdext/pull/892 ."]
57
+ For detailed reasons, see https://github.com/godot-rust/gdext/pull/901 ."]
58
58
pub fn is_instance_id_valid ( instance_id : i64 ) -> bool {
59
59
crate :: gen:: utilities:: is_instance_id_valid ( instance_id)
60
60
}
You can’t perform that action at this time.
0 commit comments