This commit is contained in:
MoeThun 2024-07-22 01:06:33 +02:00 committed by GitHub
commit d78e5a878e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -50,7 +50,7 @@ fn components_string_to_components(
{
debug!("TYPE INFO {:?}", type_registration.type_info());
let ron_string = format!(
let mut ron_string = format!(
"{{ \"{}\":{} }}",
type_registration.type_info().type_path(),
parsed_value
@ -66,6 +66,9 @@ fn components_string_to_components(
println!("serialized Component {}", serialized);
*/
debug!("component data ron string {}", ron_string);
if cfg!(windows) {
ron_string = ron_string.replace("\\", "/");
}
let mut deserializer = ron::Deserializer::from_str(ron_string.as_str())
.expect("deserialzer should have been generated from string");
let reflect_deserializer = ReflectDeserializer::new(type_registry);