From 517bef63a9ae577983b0e9b5c8f0196b37d95704 Mon Sep 17 00:00:00 2001
From: sabrina-shanman <sabrina@highfidelity.io>
Date: Mon, 16 Sep 2019 11:09:34 -0700
Subject: [PATCH] Make fields for TransformNode, Deformer, DynamicTransform
 public

---
 libraries/hfm/src/hfm/HFM.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libraries/hfm/src/hfm/HFM.h b/libraries/hfm/src/hfm/HFM.h
index a015330431..31d8eda877 100644
--- a/libraries/hfm/src/hfm/HFM.h
+++ b/libraries/hfm/src/hfm/HFM.h
@@ -288,17 +288,20 @@ public:
 };
 
 class TransformNode {
+public:
     uint32_t parent { 0 };
     Transform transform;
 };
 
 // Formerly contained in hfm::Mesh
 class Deformer {
+public:
     std::vector<uint16_t> indices;
     std::vector<uint16_t> weights;
 };
 
 class DynamicTransform {
+public:
     std::vector<uint32_t> deformers;
     std::vector<Cluster> clusters; // affect the deformer of the same index
     std::vector<uint32_t> blendshapes;