Skip to content

Commit

Permalink
skip the properties for now
Browse files Browse the repository at this point in the history
  • Loading branch information
KatKatKateryna committed Jun 20, 2024
1 parent 37f6b9a commit c6a1031
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ public List<FieldDescription> GetFieldsFromSpeckleLayer(VectorLayer target)

foreach (var baseObj in target)
{
Dictionary<string, object?> members = new();
// get all members by default, but only Dynamic ones from the basic geometry
Dictionary<string, object?> members = baseObj.GetMembers(DynamicBaseMemberType.Instance);
// Dictionary<string, object?> members = baseObj.GetMembers(DynamicBaseMemberType.Dynamic);

foreach (KeyValuePair<string, object?> field in members)
{
Expand Down

0 comments on commit c6a1031

Please sign in to comment.