com.wallstop-studios.unity-helpers 2.0.0-rc78.5 → 2.0.0-rc78.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,6 +21,7 @@
21
21
  public sealed class MatchTransform : MonoBehaviour
22
22
  {
23
23
  public Transform toMatch;
24
+ public Vector3 localOffset;
24
25
 
25
26
  public MatchTransformMode mode = MatchTransformMode.Update;
26
27
 
@@ -75,7 +76,7 @@
75
76
  return;
76
77
  }
77
78
 
78
- _transform.position = toMatch.position;
79
+ _transform.position = toMatch.position + localOffset;
79
80
  }
80
81
  }
81
82
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.wallstop-studios.unity-helpers",
3
- "version": "2.0.0-rc78.5",
3
+ "version": "2.0.0-rc78.6",
4
4
  "displayName": "Unity Helpers",
5
5
  "description": "Various Unity Helper Library",
6
6
  "dependencies": {},
@@ -39,3 +39,4 @@
39
39
 
40
40
 
41
41
 
42
+