Skip to content

Commit

Permalink
Add mesh support back to convertor
Browse files Browse the repository at this point in the history
  • Loading branch information
saintentropy committed Oct 22, 2023
1 parent c8c3eb9 commit f092690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Libraries/CoreNodes/Data.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public override bool CanRead

public override bool CanConvert(Type objectType)
{
return typeof(DesignScriptEntity).IsAssignableFrom(objectType) && !typeof(Mesh).IsAssignableFrom(objectType) && !typeof(IndexGroup).IsAssignableFrom(objectType);
return typeof(DesignScriptEntity).IsAssignableFrom(objectType);
}
}

Expand Down

0 comments on commit f092690

Please sign in to comment.