com.wallstop-studios.unity-helpers 2.0.0-rc78.3 → 2.0.0-rc78.4

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.
@@ -2,6 +2,6 @@
2
2
  {
3
3
  public static class PRNG
4
4
  {
5
- public static IRandom Instance => PcgRandom.Instance;
5
+ public static IRandom Instance => XoroShiroEnhancedRandom.Instance;
6
6
  }
7
7
  }
@@ -18,6 +18,9 @@ namespace WallstopStudios.UnityHelpers.Core.Random
18
18
  {
19
19
  private const int UintByteCount = sizeof(uint) * 8;
20
20
 
21
+ public static XoroShiroEnhancedRandom Instance =>
22
+ ThreadLocalRandom<XoroShiroEnhancedRandom>.Instance;
23
+
21
24
  public override RandomState InternalState
22
25
  {
23
26
  get
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.wallstop-studios.unity-helpers",
3
- "version": "2.0.0-rc78.3",
3
+ "version": "2.0.0-rc78.4",
4
4
  "displayName": "Unity Helpers",
5
5
  "description": "Various Unity Helper Library",
6
6
  "dependencies": {},
@@ -37,3 +37,4 @@
37
37
  }
38
38
  }
39
39
 
40
+