com.wallstop-studios.unity-helpers 2.0.0-rc81.9 → 2.0.1

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.
Files changed (264) hide show
  1. package/.editorconfig +1 -1
  2. package/.gitattributes +1 -1
  3. package/.githooks/pre-commit +31 -5
  4. package/.githooks/pre-push +50 -0
  5. package/.github/dependabot.yml +24 -2
  6. package/.github/scripts/check-markdown-links.ps1 +77 -0
  7. package/.github/scripts/check_markdown_links.py +89 -0
  8. package/.github/scripts/check_markdown_url_encoding.py +74 -0
  9. package/.github/scripts/validate_markdown_links.py +194 -0
  10. package/.github/workflows/csharpier-autofix.yml +152 -0
  11. package/.github/workflows/format-on-demand.yml +305 -0
  12. package/.github/workflows/lint-doc-links.yml +8 -5
  13. package/.github/workflows/markdown-json.yml +6 -2
  14. package/.github/workflows/npm-publish.yml +1 -1
  15. package/.github/workflows/prettier-autofix.yml +195 -0
  16. package/.github/workflows/update-dotnet-tools.yml +80 -0
  17. package/.github/workflows/yaml-format-lint.yml +41 -0
  18. package/.lychee.toml +4 -4
  19. package/.markdownlint.jsonc +21 -0
  20. package/.pre-commit-config.yaml +11 -3
  21. package/.yamllint.yaml +31 -0
  22. package/AGENTS.md +5 -1
  23. package/Docs/CHANGELOG.md +11 -0
  24. package/Docs/CONTRIBUTING.md +49 -0
  25. package/Docs/CONTRIBUTING.md.meta +7 -0
  26. package/{EDITOR_TOOLS_GUIDE.md → Docs/EDITOR_TOOLS_GUIDE.md} +4 -0
  27. package/Docs/EFFECTS_SYSTEM.md +1316 -0
  28. package/{EFFECTS_SYSTEM_TUTORIAL.md → Docs/EFFECTS_SYSTEM_TUTORIAL.md} +1 -1
  29. package/{GETTING_STARTED.md → Docs/GETTING_STARTED.md} +50 -64
  30. package/{GLOSSARY.md → Docs/GLOSSARY.md} +4 -4
  31. package/Docs/HELPER_UTILITIES.md +885 -0
  32. package/Docs/HELPER_UTILITIES.md.meta +7 -0
  33. package/{INDEX.md → Docs/INDEX.md} +107 -62
  34. package/Docs/MATH_AND_EXTENSIONS.md +1039 -0
  35. package/{RANDOM_PERFORMANCE.md → Docs/RANDOM_PERFORMANCE.md} +15 -15
  36. package/{RELATIONAL_COMPONENTS.md → Docs/RELATIONAL_COMPONENTS.md} +111 -84
  37. package/{SERIALIZATION.md → Docs/SERIALIZATION.md} +15 -0
  38. package/{SPATIAL_TREES_2D_GUIDE.md → Docs/SPATIAL_TREES_2D_GUIDE.md} +2 -2
  39. package/{SPATIAL_TREES_3D_GUIDE.md → Docs/SPATIAL_TREES_3D_GUIDE.md} +1 -1
  40. package/Docs/SPATIAL_TREE_2D_PERFORMANCE.md +241 -0
  41. package/Docs/SPATIAL_TREE_3D_PERFORMANCE.md +243 -0
  42. package/{THIRD_PARTY_NOTICES.md → Docs/THIRD_PARTY_NOTICES.md} +1 -1
  43. package/Docs/UTILITY_COMPONENTS.md +906 -0
  44. package/Docs/UTILITY_COMPONENTS.md.meta +7 -0
  45. package/Docs/VISUAL_COMPONENTS.md +337 -0
  46. package/Docs/VISUAL_COMPONENTS.md.meta +7 -0
  47. package/Editor/AnimationEventEditor.cs +337 -160
  48. package/Editor/Core/Helper/AnimationEventHelpers.cs +178 -152
  49. package/Editor/CustomEditors/PersistentDirectoryGUI.cs +20 -11
  50. package/Editor/CustomEditors/TexturePlatformOverrideEntryDrawer.cs +11 -2
  51. package/Editor/FitTextureSizeWindow.cs +43 -19
  52. package/Editor/PersistentDirectorySettings.cs +64 -12
  53. package/Editor/PrefabChecker.cs +72 -5
  54. package/Editor/Sprites/AnimationCopier.cs +131 -55
  55. package/Editor/Sprites/AnimationCreator.cs +63 -22
  56. package/Editor/Sprites/AnimationViewerWindow.cs +42 -6
  57. package/Editor/Sprites/TexturePlatformNameHelper.cs +50 -39
  58. package/Editor/Sprites/TextureResizerWizard.cs +23 -1
  59. package/Editor/Sprites/TextureSettingsApplierWindow.cs +148 -85
  60. package/Editor/Tools/ImageBlurTool.cs +81 -10
  61. package/Editor/Utils/EditorUi.cs +1 -1
  62. package/Editor/Utils/ScriptableObjectSingletonCreator.cs +1 -1
  63. package/README.md +428 -2433
  64. package/Runtime/AssemblyInfo.cs +4 -0
  65. package/Runtime/Core/Attributes/NotNullAttribute.cs +1 -3
  66. package/Runtime/Core/Attributes/RelationalComponentAssigner.cs +50 -5
  67. package/Runtime/Core/DataStructure/CyclicBuffer.cs +0 -1
  68. package/Runtime/Core/DataStructure/KDTree3D.cs +1 -1
  69. package/Runtime/Core/DataStructure/OctTree3D.cs +1 -1
  70. package/Runtime/Core/Extension/AsyncOperationExtensions.cs +122 -0
  71. package/Runtime/Core/Extension/RandomExtensions.cs +68 -0
  72. package/Runtime/Core/Extension/WallstopStudiosLogger.cs +16 -0
  73. package/Runtime/Core/Helper/Partials/ObjectHelpers.cs +4 -1
  74. package/Runtime/Core/Helper/ReflectionHelpers.cs +21 -10
  75. package/Runtime/Core/Helper/SpriteHelpers.cs +3 -1
  76. package/Runtime/Core/Helper/UnityMainThreadDispatcher.cs +45 -1
  77. package/Runtime/Core/Serialization/JsonConverters/GameObjectConverter.cs +13 -5
  78. package/Runtime/Core/Serialization/JsonConverters/ResolutionConverter.cs +1 -1
  79. package/Runtime/Core/Serialization/JsonConverters/TypeConverter.cs +1 -1
  80. package/Runtime/Core/Serialization/ProtobufUnitySurrogates.cs +24 -29
  81. package/Runtime/Core/Serialization/Serializer.cs +101 -0
  82. package/Runtime/Integrations/Reflex/AssemblyInfo.cs +7 -0
  83. package/Runtime/Integrations/Reflex/AssemblyInfo.cs.meta +11 -0
  84. package/Runtime/Integrations/Reflex/ContainerRelationalExtensions.cs +198 -0
  85. package/Runtime/Integrations/Reflex/ContainerRelationalExtensions.cs.meta +11 -0
  86. package/Runtime/Integrations/Reflex/RelationalComponentsInstaller.cs +86 -0
  87. package/Runtime/Integrations/Reflex/RelationalComponentsInstaller.cs.meta +11 -0
  88. package/Runtime/Integrations/Reflex/RelationalReflexSceneBootstrapper.cs +316 -0
  89. package/Runtime/Integrations/Reflex/RelationalReflexSceneBootstrapper.cs.meta +11 -0
  90. package/Runtime/Integrations/Reflex/RelationalSceneAssignmentOptions.cs +86 -0
  91. package/Runtime/Integrations/Reflex/RelationalSceneAssignmentOptions.cs.meta +11 -0
  92. package/Runtime/Integrations/Reflex/WallstopStudios.UnityHelpers.Integration.Reflex.asmdef +20 -0
  93. package/Runtime/Integrations/Reflex/WallstopStudios.UnityHelpers.Integration.Reflex.asmdef.meta +7 -0
  94. package/Runtime/Integrations/Reflex.meta +8 -0
  95. package/Runtime/Integrations/VContainer/AssemblyInfo.cs +9 -0
  96. package/Runtime/Integrations/VContainer/AssemblyInfo.cs.meta +3 -0
  97. package/Runtime/Integrations/VContainer/ObjectResolverRelationalExtensions.cs +96 -0
  98. package/Runtime/Integrations/VContainer/RelationalComponentEntryPoint.cs +90 -10
  99. package/Runtime/Integrations/VContainer/RelationalComponentsBuilderExtensions.cs +13 -1
  100. package/Runtime/Integrations/VContainer/RelationalObjectPools.cs +114 -0
  101. package/Runtime/Integrations/VContainer/RelationalObjectPools.cs.meta +11 -0
  102. package/Runtime/Integrations/VContainer/RelationalSceneAssignmentOptions.cs +16 -4
  103. package/Runtime/Integrations/VContainer/RelationalSceneLoadListener.cs +241 -0
  104. package/Runtime/Integrations/VContainer/RelationalSceneLoadListener.cs.meta +11 -0
  105. package/Runtime/Integrations/Zenject/AssemblyInfo.cs +9 -0
  106. package/Runtime/Integrations/Zenject/AssemblyInfo.cs.meta +3 -0
  107. package/Runtime/Integrations/Zenject/DiContainerRelationalExtensions.cs +69 -2
  108. package/Runtime/Integrations/Zenject/RelationalComponentSceneInitializer.cs +89 -12
  109. package/Runtime/Integrations/Zenject/RelationalComponentsInstaller.cs +23 -1
  110. package/Runtime/Integrations/Zenject/RelationalMemoryPools.cs +44 -0
  111. package/Runtime/Integrations/Zenject/RelationalMemoryPools.cs.meta +11 -0
  112. package/Runtime/Integrations/Zenject/RelationalSceneAssignmentOptions.cs +16 -10
  113. package/Runtime/Integrations/Zenject/RelationalSceneLoadListener.cs +243 -0
  114. package/Runtime/Integrations/Zenject/RelationalSceneLoadListener.cs.meta +11 -0
  115. package/Runtime/Tags/AttributeMetadataCache.cs +1 -4
  116. package/Runtime/Utils/Buffers.cs +4 -4
  117. package/Runtime/Utils/ScriptableObjectSingleton.cs +1 -2
  118. package/Runtime/Utils/SetTextureImportData.cs +3 -1
  119. package/Runtime/Utils/TextureScale.cs +10 -2
  120. package/Runtime/Visuals/UGUI/EnhancedImage.cs +6 -0
  121. package/Runtime/Visuals/UIToolkit/LayeredImage.cs +4 -1
  122. package/Samples~/DI - Reflex/README.md +527 -0
  123. package/Samples~/DI - Reflex/README.md.meta +7 -0
  124. package/Samples~/DI - Reflex/Scripts/ReflexPaletteService.cs +36 -0
  125. package/Samples~/DI - Reflex/Scripts/ReflexPaletteService.cs.meta +11 -0
  126. package/Samples~/DI - Reflex/Scripts/ReflexRelationalConsumer.cs +79 -0
  127. package/Samples~/DI - Reflex/Scripts/ReflexRelationalConsumer.cs.meta +11 -0
  128. package/Samples~/DI - Reflex/Scripts/ReflexSampleInstaller.cs +30 -0
  129. package/Samples~/DI - Reflex/Scripts/ReflexSampleInstaller.cs.meta +11 -0
  130. package/Samples~/DI - Reflex/Scripts/ReflexSpawner.cs +79 -0
  131. package/Samples~/DI - Reflex/Scripts/ReflexSpawner.cs.meta +11 -0
  132. package/Samples~/DI - Reflex/Scripts/Samples.UnityHelpers.DI.Reflex.asmdef +26 -0
  133. package/Samples~/DI - Reflex/Scripts/Samples.UnityHelpers.DI.Reflex.asmdef.meta +9 -0
  134. package/Samples~/DI - Reflex/Scripts.meta +8 -0
  135. package/Samples~/DI - Reflex.meta +8 -0
  136. package/Samples~/DI - VContainer/README.md +238 -56
  137. package/Samples~/DI - VContainer/Scripts/GameLifetimeScope.cs +22 -4
  138. package/Samples~/DI - VContainer/Scripts/RelationalConsumer.cs +5 -2
  139. package/Samples~/DI - VContainer/Scripts/Spawner.cs +113 -4
  140. package/Samples~/DI - Zenject/README.md +223 -58
  141. package/Samples~/DI - Zenject/Scripts/RelationalConsumer.cs +3 -0
  142. package/Samples~/DI - Zenject/Scripts/RelationalConsumerPool.cs +37 -0
  143. package/Samples~/DI - Zenject/Scripts/RelationalConsumerPool.cs.meta +12 -0
  144. package/Samples~/DI - Zenject/Scripts/SpawnerZenject.cs +74 -3
  145. package/Samples~/Random - PRNG/README.md +2 -1
  146. package/Samples~/Relational Components - Basic/README.md +3 -1
  147. package/Samples~/Serialization - JSON/README.md +2 -1
  148. package/Samples~/Spatial Structures - 2D and 3D/README.md +2 -1
  149. package/Samples~/UGUI - EnhancedImage/README.md +2 -1
  150. package/Samples~/UI Toolkit - MultiFile Selector (Editor)/README.md +2 -1
  151. package/Tests/Editor/Attributes/AnimationEventHelpersTests.cs +16 -0
  152. package/Tests/Editor/Core/Attributes/RelationalComponentAssignerTests.cs +32 -34
  153. package/Tests/Editor/Integrations/Reflex/ReflexIntegrationCompilationTests.cs +41 -0
  154. package/Tests/Editor/Integrations/Reflex/ReflexIntegrationCompilationTests.cs.meta +11 -0
  155. package/Tests/Editor/Integrations/Reflex/WallstopStudios.UnityHelpers.Tests.Editor.Reflex.asmdef +27 -0
  156. package/Tests/Editor/Integrations/Reflex/WallstopStudios.UnityHelpers.Tests.Editor.Reflex.asmdef.meta +7 -0
  157. package/Tests/Editor/Integrations/Reflex.meta +8 -0
  158. package/Tests/Editor/Integrations/VContainer/VContainerRelationalEntryPointTests.cs +21 -18
  159. package/Tests/Editor/Integrations/VContainer/VContainerRelationalHelpersTests.cs +164 -0
  160. package/Tests/Editor/Integrations/VContainer/VContainerRelationalHelpersTests.cs.meta +11 -0
  161. package/Tests/Editor/Integrations/VContainer/WallstopStudios.UnityHelpers.Tests.Editor.VContainer.asmdef +2 -1
  162. package/Tests/Editor/Integrations/Zenject/WallstopStudios.UnityHelpers.Tests.Editor.Zenject.asmdef +3 -2
  163. package/Tests/Editor/Integrations/Zenject/ZenjectRelationalHelpersTests.cs +127 -0
  164. package/Tests/Editor/Integrations/Zenject/ZenjectRelationalHelpersTests.cs.meta +11 -0
  165. package/Tests/Editor/Integrations/Zenject/ZenjectRelationalInitializerTests.cs +25 -23
  166. package/Tests/Editor/PersistentDirectorySettingsTests.cs +58 -0
  167. package/Tests/Editor/PersistentDirectorySettingsTests.cs.meta +11 -0
  168. package/Tests/Editor/PrefabCheckerReportTests.cs +32 -0
  169. package/Tests/Editor/PrefabCheckerReportTests.cs.meta +11 -0
  170. package/Tests/Editor/Sprites/AnimationCopierFilterTests.cs +63 -0
  171. package/Tests/Editor/Sprites/AnimationCopierFilterTests.cs.meta +11 -0
  172. package/Tests/Editor/Sprites/AnimationCopierWindowTests.cs +1 -1
  173. package/Tests/Editor/Sprites/AnimationViewerWindowTests.cs +38 -0
  174. package/Tests/Editor/Sprites/AnimationViewerWindowTests.cs.meta +11 -0
  175. package/Tests/Editor/Sprites/ScriptableSpriteAtlasEditorTests.cs +1 -1
  176. package/Tests/Editor/Sprites/SpriteCropperAdditionalTests.cs +12 -12
  177. package/Tests/Editor/Sprites/SpriteCropperTests.cs +9 -9
  178. package/Tests/Editor/Sprites/SpritePivotAdjusterTests.cs +3 -3
  179. package/Tests/Editor/Sprites/TexturePlatformNameHelperTests.cs +18 -0
  180. package/Tests/Editor/Sprites/TextureResizerWizardTests.cs +5 -5
  181. package/Tests/Editor/Sprites/TextureSettingsApplierAPITests.cs +3 -3
  182. package/Tests/Editor/Sprites/TextureSettingsApplierWizardAdditionalTests.cs +4 -4
  183. package/Tests/Editor/Sprites/TextureSettingsApplierWizardTests.cs +4 -4
  184. package/Tests/Editor/Tools/ImageBlurToolTests.cs +22 -110
  185. package/Tests/Editor/Utils/CommonTestBase.cs +60 -1
  186. package/Tests/Editor/Utils/ScriptableObjectSingletonCreatorTests.cs +6 -6
  187. package/Tests/Editor/Windows/FitTextureSizeWindowTests.cs +66 -74
  188. package/Tests/Runtime/Attributes/RelationalComponentInitializerTests.cs +4 -15
  189. package/Tests/Runtime/DataStructures/SpatialTree3DBoundsConsistencyTests.cs +29 -29
  190. package/Tests/Runtime/Extensions/AsyncOperationExtensionsTests.cs +179 -0
  191. package/Tests/Runtime/Extensions/RandomExtensionTests.cs +55 -0
  192. package/Tests/Runtime/Integrations/Reflex/RelationalComponentsReflexTests.cs +445 -0
  193. package/Tests/Runtime/Integrations/Reflex/RelationalComponentsReflexTests.cs.meta +11 -0
  194. package/Tests/Runtime/Integrations/Reflex/WallstopStudios.UnityHelpers.Tests.Runtime.Reflex.asmdef +28 -0
  195. package/Tests/Runtime/Integrations/Reflex/WallstopStudios.UnityHelpers.Tests.Runtime.Reflex.asmdef.meta +7 -0
  196. package/Tests/Runtime/Integrations/Reflex.meta +8 -0
  197. package/Tests/Runtime/Integrations/VContainer/RelationalComponentsVContainerTests.cs +257 -221
  198. package/Tests/Runtime/Integrations/VContainer/RelationalObjectPoolsVContainerTests.cs +91 -0
  199. package/Tests/Runtime/Integrations/VContainer/RelationalObjectPoolsVContainerTests.cs.meta +11 -0
  200. package/Tests/Runtime/Integrations/Zenject/RelationalComponentsZenjectTests.cs +251 -233
  201. package/Tests/Runtime/Performance/RandomPerformanceTests.cs +1 -1
  202. package/Tests/Runtime/Performance/SpatialTree2DPerformanceTests.cs +6 -1
  203. package/Tests/Runtime/Performance/SpatialTree3DPerformanceTests.cs +4 -1
  204. package/Tests/Runtime/Serialization/JsonConverterAdditionalTests.cs +30 -0
  205. package/Tests/Runtime/Serialization/JsonConverterAdditionalTests.cs.meta +11 -0
  206. package/Tests/Runtime/Serialization/JsonConverterTests.cs +8 -12
  207. package/Tests/Runtime/Serialization/JsonRoundtripComprehensiveTests.cs +4 -9
  208. package/Tests/Runtime/Serialization/JsonSerializationTest.cs +16 -5
  209. package/Tests/Runtime/Serialization/ProtoRoundtripComprehensiveTests.cs +13 -13
  210. package/Tests/Runtime/Serialization/SerializerAdditionalTests.cs +12 -0
  211. package/Tests/Runtime/Serialization/SerializerFileIoTests.cs +105 -0
  212. package/Tests/Runtime/Serialization/SerializerFileIoTests.cs.meta +11 -0
  213. package/Tests/Runtime/Serialization/UnityEngineObjectJsonTests.cs +247 -0
  214. package/Tests/Runtime/Serialization/UnityEngineObjectJsonTests.cs.meta +11 -0
  215. package/Tests/Runtime/TestUtils/CommonTestBase.cs +99 -0
  216. package/Tests/Runtime/TestUtils/ReflexTestSupport.cs +111 -0
  217. package/Tests/Runtime/TestUtils/ReflexTestSupport.cs.meta +12 -0
  218. package/Tests/Runtime/Utils/CoroutineHandlerTests.cs +1 -1
  219. package/Tests/Runtime/Utils/LZMAComprehensiveTests.cs +1 -1
  220. package/Tests/Runtime/Utils/LZMATests.cs +1 -1
  221. package/Tests/Runtime/Utils/MatchColliderToSpriteTests.cs +5 -5
  222. package/Tests/Runtime/Visuals/EnhancedImageTests.cs +25 -56
  223. package/Tests/Runtime/Visuals/VisualsTestHelpers.cs +1 -8
  224. package/Tests/TestUtils.meta +8 -0
  225. package/package-lock.json.meta +7 -0
  226. package/package.json +13 -4
  227. package/scripts/check-eol.ps1 +4 -5
  228. package/scripts/lint-tests.ps1 +156 -0
  229. package/scripts/lint-tests.ps1.meta +7 -0
  230. package/scripts/normalize-eol.ps1 +6 -9
  231. package/.github/workflows/csharpier.yml +0 -135
  232. package/CHANGELOG.md +0 -0
  233. package/EFFECTS_SYSTEM.md +0 -242
  234. package/MATH_AND_EXTENSIONS.md +0 -316
  235. package/SPATIAL_TREE_2D_PERFORMANCE.md +0 -238
  236. package/SPATIAL_TREE_3D_PERFORMANCE.md +0 -240
  237. /package/{CHANGELOG.md.meta → Docs/CHANGELOG.md.meta} +0 -0
  238. /package/{DATA_STRUCTURES.md → Docs/DATA_STRUCTURES.md} +0 -0
  239. /package/{DATA_STRUCTURES.md.meta → Docs/DATA_STRUCTURES.md.meta} +0 -0
  240. /package/{EDITOR_TOOLS_GUIDE.md.meta → Docs/EDITOR_TOOLS_GUIDE.md.meta} +0 -0
  241. /package/{EFFECTS_SYSTEM.md.meta → Docs/EFFECTS_SYSTEM.md.meta} +0 -0
  242. /package/{EFFECTS_SYSTEM_TUTORIAL.md.meta → Docs/EFFECTS_SYSTEM_TUTORIAL.md.meta} +0 -0
  243. /package/{GETTING_STARTED.md.meta → Docs/GETTING_STARTED.md.meta} +0 -0
  244. /package/{GLOSSARY.md.meta → Docs/GLOSSARY.md.meta} +0 -0
  245. /package/{HULLS.md → Docs/HULLS.md} +0 -0
  246. /package/{HULLS.md.meta → Docs/HULLS.md.meta} +0 -0
  247. /package/{INDEX.md.meta → Docs/INDEX.md.meta} +0 -0
  248. /package/{LICENSE.md → Docs/LICENSE.md} +0 -0
  249. /package/{LICENSE.md.meta → Docs/LICENSE.md.meta} +0 -0
  250. /package/{MATH_AND_EXTENSIONS.md.meta → Docs/MATH_AND_EXTENSIONS.md.meta} +0 -0
  251. /package/{RANDOM_PERFORMANCE.md.meta → Docs/RANDOM_PERFORMANCE.md.meta} +0 -0
  252. /package/{REFLECTION_HELPERS.md → Docs/REFLECTION_HELPERS.md} +0 -0
  253. /package/{REFLECTION_HELPERS.md.meta → Docs/REFLECTION_HELPERS.md.meta} +0 -0
  254. /package/{RELATIONAL_COMPONENTS.md.meta → Docs/RELATIONAL_COMPONENTS.md.meta} +0 -0
  255. /package/{SERIALIZATION.md.meta → Docs/SERIALIZATION.md.meta} +0 -0
  256. /package/{SINGLETONS.md → Docs/SINGLETONS.md} +0 -0
  257. /package/{SINGLETONS.md.meta → Docs/SINGLETONS.md.meta} +0 -0
  258. /package/{SPATIAL_TREES_2D_GUIDE.md.meta → Docs/SPATIAL_TREES_2D_GUIDE.md.meta} +0 -0
  259. /package/{SPATIAL_TREES_3D_GUIDE.md.meta → Docs/SPATIAL_TREES_3D_GUIDE.md.meta} +0 -0
  260. /package/{SPATIAL_TREE_2D_PERFORMANCE.md.meta → Docs/SPATIAL_TREE_2D_PERFORMANCE.md.meta} +0 -0
  261. /package/{SPATIAL_TREE_3D_PERFORMANCE.md.meta → Docs/SPATIAL_TREE_3D_PERFORMANCE.md.meta} +0 -0
  262. /package/{SPATIAL_TREE_SEMANTICS.md → Docs/SPATIAL_TREE_SEMANTICS.md} +0 -0
  263. /package/{SPATIAL_TREE_SEMANTICS.md.meta → Docs/SPATIAL_TREE_SEMANTICS.md.meta} +0 -0
  264. /package/{THIRD_PARTY_NOTICES.md.meta → Docs/THIRD_PARTY_NOTICES.md.meta} +0 -0
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: 1fc1762520bc2704a87dd9179c81dd98
3
+ TextScriptImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -17,8 +17,14 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
17
17
  **Animation Event Editor** - Visual event editing with sprite preview
18
18
  → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#animation-event-editor)
19
19
 
20
+ **AnimatedSpriteLayer** - Data structure for sprite animation layers
21
+ → [Visual Components](VISUAL_COMPONENTS.md#animatedspritelayer)
22
+
23
+ **AnimatorEnumStateMachine** - Type-safe enum-based animator control
24
+ → [Utility Components](UTILITY_COMPONENTS.md#animatorenumstatemachine)
25
+
20
26
  **Async Extensions** - Await AsyncOperation with Task/ValueTask
21
- → [README - API Index](README.md#api-index)
27
+ → [Math & Extensions](MATH_AND_EXTENSIONS.md#async-coroutine-interop)
22
28
 
23
29
  **Attribute** - Dynamic numeric value with modifications
24
30
  → [Effects System](EFFECTS_SYSTEM.md) | [Glossary](GLOSSARY.md#attribute)
@@ -30,7 +36,7 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
30
36
  → [Effects System](EFFECTS_SYSTEM.md)
31
37
 
32
38
  **AttributesComponent** - Base class for modifiable attributes
33
- → [Effects System](EFFECTS_SYSTEM.md) | [README](README.md#effects-attributes-and-tags)
39
+ → [Effects System](EFFECTS_SYSTEM.md) | [README](../README.md#effects-attributes-and-tags)
34
40
 
35
41
  ---
36
42
 
@@ -40,13 +46,13 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
40
46
  → [Data Structures](DATA_STRUCTURES.md#binary-heap-priority-queue)
41
47
 
42
48
  **BitSet** - Compact boolean storage with bitwise operations
43
- → [Data Structures](DATA_STRUCTURES.md#bitset) | [README](README.md#data-structures)
49
+ → [Data Structures](DATA_STRUCTURES.md#bitset) | [README](../README.md#data-structures)
44
50
 
45
51
  **Buffering Pattern** - Reusable collections for zero-allocation queries
46
- → [README - Buffering Pattern](README.md#buffering-pattern) | [Glossary](GLOSSARY.md#buffering-pattern)
52
+ → [README - Buffering Pattern](../README.md#buffering-pattern) | [Glossary](GLOSSARY.md#buffering-pattern)
47
53
 
48
54
  **Buffers<T>** - Pooled collections (List/Stack/Queue/HashSet)
49
- → [README - Buffering Pattern](README.md#buffering-pattern)
55
+ → [README - Buffering Pattern](../README.md#buffering-pattern)
50
56
 
51
57
  ---
52
58
 
@@ -55,46 +61,61 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
55
61
  **Camera Extensions** - OrthographicBounds and helpers
56
62
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#unity-extensions)
57
63
 
64
+ **CenterPointOffset** - Define logical center points separate from transform pivot
65
+ → [Utility Components](UTILITY_COMPONENTS.md#centerpointoffset)
66
+
58
67
  **ChildComponent** - Auto-wire components from children
59
- → [Relational Components](RELATIONAL_COMPONENTS.md) | [README](README.md#component-attributes)
68
+ → [Relational Components](RELATIONAL_COMPONENTS.md) | [README](../README.md#component-attributes)
69
+
70
+ **ChildSpawner** - Conditional prefab instantiation with environment filtering
71
+ → [Utility Components](UTILITY_COMPONENTS.md#childspawner)
72
+
73
+ **CircleLineRenderer** - Dynamic circle visualization synced to CircleCollider2D
74
+ → [Utility Components](UTILITY_COMPONENTS.md#circlelinerenderer)
75
+
76
+ **CollisionProxy** - Event-based 2D collision detection without inheritance
77
+ → [Utility Components](UTILITY_COMPONENTS.md#collisionproxy)
60
78
 
61
79
  **Color Utilities** - Averaging (LAB/HSV/Weighted/Dominant), hex conversion
62
80
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#color-utilities)
63
81
 
82
+ **CoroutineHandler** - Singleton MonoBehaviour for coroutine hosting
83
+ → [Utility Components](UTILITY_COMPONENTS.md#coroutinehandler)
84
+
64
85
  **CosmeticEffectData** - Presenters for effect cosmetics
65
86
  → [Effects System](EFFECTS_SYSTEM.md)
66
87
 
67
88
  **Cyclic Buffer** - Fixed-capacity ring buffer
68
- → [Data Structures](DATA_STRUCTURES.md#cyclic-buffer-ring-buffer) | [README](README.md#data-structures)
89
+ → [Data Structures](DATA_STRUCTURES.md#cyclic-buffer-ring-buffer) | [README](../README.md#data-structures)
69
90
 
70
91
  ---
71
92
 
72
93
  ## D
73
94
 
74
95
  **Data Structures** - Heaps, tries, sparse sets, and more
75
- → [Data Structures Guide](DATA_STRUCTURES.md) | [README](README.md#data-structures)
96
+ → [Data Structures Guide](DATA_STRUCTURES.md) | [README](../README.md#data-structures)
76
97
 
77
98
  **Deque** - Double-ended queue
78
- → [Data Structures](DATA_STRUCTURES.md#deque-double-ended-queue) | [README](README.md#data-structures)
99
+ → [Data Structures](DATA_STRUCTURES.md#deque-double-ended-queue) | [README](../README.md#data-structures)
79
100
 
80
- **Dictionary Extensions** - GetOrAdd, GetOrElse helpers
81
- → [README - API Index](README.md#api-index)
101
+ **Dictionary Extensions** - GetOrAdd, GetOrElse, Merge, ContentEquals
102
+ → [Math & Extensions](MATH_AND_EXTENSIONS.md#collections)
82
103
 
83
104
  **Disjoint Set** - Union-find for connectivity
84
- → [Data Structures](DATA_STRUCTURES.md#disjoint-set-union-find) | [README](README.md#data-structures)
105
+ → [Data Structures](DATA_STRUCTURES.md#disjoint-set-union-find) | [README](../README.md#data-structures)
85
106
 
86
107
  **Douglas-Peucker** - Polyline simplification algorithm
87
108
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#geometry) | [Glossary](GLOSSARY.md#douglas-peucker-algorithm)
88
109
 
89
110
  **DxReadOnly** - Read-only inspector display attribute
90
- → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#dxreadonly-property-drawer) | [README](README.md#component-attributes)
111
+ → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#dxreadonly-property-drawer) | [README](../README.md#component-attributes)
91
112
 
92
113
  ---
93
114
 
94
115
  ## E
95
116
 
96
117
  **Editor Tools** - 20+ tools for sprites, animations, validation
97
- → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md) | [README](README.md#editor-tools)
118
+ → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md) | [README](../README.md#editor-tools)
98
119
 
99
120
  **EffectHandle** - Identifier for effect application instances
100
121
  → [Effects System](EFFECTS_SYSTEM.md) | [Glossary](GLOSSARY.md#handle-effect-handle)
@@ -103,10 +124,13 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
103
124
  → [Effects System](EFFECTS_SYSTEM.md)
104
125
 
105
126
  **Effects System** - Data-driven buffs/debuffs/status effects
106
- → [Effects System Guide](EFFECTS_SYSTEM.md) | [README](README.md#effects-attributes-and-tags)
127
+ → [Effects System Guide](EFFECTS_SYSTEM.md) | [README](../README.md#effects-attributes-and-tags)
107
128
 
108
129
  **EnhancedImage** - Unity Image with HDR color and shape masks
109
- → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#enhancedimage-editor)
130
+ → [Visual Components](VISUAL_COMPONENTS.md#enhancedimage-ugui) | [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#enhancedimage-editor)
131
+
132
+ **Enum Extensions** - Zero-allocation flag checks, cached names, display names
133
+ → [Math & Extensions](MATH_AND_EXTENSIONS.md#enum-helpers)
110
134
 
111
135
  ---
112
136
 
@@ -120,7 +144,7 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
120
144
  ## G
121
145
 
122
146
  **Gaussian Distribution** - Normal distribution random values
123
- → [README - Random Generators](README.md#random-number-generators)
147
+ → [README - Random Generators](../README.md#random-number-generators)
124
148
 
125
149
  **Geometry Helpers** - Lines, ranges, parabolas, convex hulls
126
150
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#geometry)
@@ -133,10 +157,10 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
133
157
  ## H
134
158
 
135
159
  **Heap** - Binary heap for priority queues
136
- → [Data Structures](DATA_STRUCTURES.md#binary-heap-priority-queue) | [README](README.md#data-structures)
160
+ → [Data Structures](DATA_STRUCTURES.md#binary-heap-priority-queue) | [README](../README.md#data-structures)
137
161
 
138
162
  **Helpers Class** - General utilities (layers, sprites, components)
139
- → [README - Helpers & Extensions](README.md#helpers--extensions)
163
+ → [Helper Utilities](HELPER_UTILITIES.md#gameplay-helpers) | [README - Helpers & Extensions](../README.md#helpers--extensions)
140
164
 
141
165
  **Hulls** - Convex vs concave hull algorithms
142
166
  → [Hulls Guide](HULLS.md)
@@ -146,7 +170,7 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
146
170
  ## I
147
171
 
148
172
  **IllusionFlow** - Default recommended PRNG
149
- → [README - Random Generators](README.md#random-number-generators) | [Random Performance](RANDOM_PERFORMANCE.md)
173
+ → [README - Random Generators](../README.md#random-number-generators) | [Random Performance](RANDOM_PERFORMANCE.md)
150
174
 
151
175
  **Image Blur Tool** - Gaussian blur for textures
152
176
  → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#image-blur-tool)
@@ -158,7 +182,7 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
158
182
  → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#intdropdown-property-drawer)
159
183
 
160
184
  **IRandom Interface** - Common interface for all RNGs
161
- → [README - Random Generators](README.md#random-number-generators)
185
+ → [README - Random Generators](../README.md#random-number-generators)
162
186
 
163
187
  ---
164
188
 
@@ -174,34 +198,40 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
174
198
 
175
199
  ## L
176
200
 
201
+ **LayeredImage** - UI Toolkit element for composited sprite animations
202
+ → [Visual Components](VISUAL_COMPONENTS.md#layeredimage)
203
+
177
204
  **Line2D / Line3D** - Line segment operations
178
205
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#geometry)
179
206
 
180
207
  **LineHelper** - Douglas-Peucker simplification
181
- → [Math & Extensions](MATH_AND_EXTENSIONS.md#geometry) | [README](README.md#core-math--extensions)
208
+ → [Math & Extensions](MATH_AND_EXTENSIONS.md#geometry) | [README](../README.md#core-math--extensions)
182
209
 
183
210
  **LZMA Compression** - Compression utilities
184
- → [README - Serialization](README.md#serialization)
211
+ → [README - Serialization](../README.md#serialization)
185
212
 
186
213
  ---
187
214
 
188
215
  ## M
189
216
 
190
217
  **Math Helpers** - Positive modulo, wrapped arithmetic, geometry
191
- → [Math & Extensions Guide](MATH_AND_EXTENSIONS.md) | [README](README.md#core-math--extensions)
218
+ → [Math & Extensions Guide](MATH_AND_EXTENSIONS.md) | [README](../README.md#core-math--extensions)
192
219
 
193
220
  **MatchColliderToSprite** - Sync collider shape to sprite
194
- → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#matchcollidertosprite-editor)
221
+ → [Utility Components](UTILITY_COMPONENTS.md#matchcollidertosprite) | [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#matchcollidertosprite-editor)
222
+
223
+ **MatchTransform** - Follow another transform with offset and timing control
224
+ → [Utility Components](UTILITY_COMPONENTS.md#matchtransform)
195
225
 
196
226
  ---
197
227
 
198
228
  ## N
199
229
 
200
230
  **Noise Maps** - Perlin noise generation
201
- → [README - Random Generators](README.md#random-number-generators)
231
+ → [README - Random Generators](../README.md#random-number-generators)
202
232
 
203
233
  **NotNull Attribute** - Inspector validation attribute
204
- → [README - Component Attributes](README.md#component-attributes)
234
+ → [README - Component Attributes](../README.md#component-attributes)
205
235
 
206
236
  **Numeric Helpers** - PositiveMod, Clamp, Approximately
207
237
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#numeric-helpers)
@@ -210,6 +240,9 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
210
240
 
211
241
  ## O
212
242
 
243
+ **Oscillator** - Automatic circular/elliptical motion component
244
+ → [Utility Components](UTILITY_COMPONENTS.md#oscillator)
245
+
213
246
  **OctTree3D** - 3D spatial tree (octree)
214
247
  → [3D Spatial Trees](SPATIAL_TREES_3D_GUIDE.md) | [3D Performance](SPATIAL_TREE_3D_PERFORMANCE.md)
215
248
 
@@ -224,19 +257,22 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
224
257
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#geometry)
225
258
 
226
259
  **ParentComponent** - Auto-wire components from parents
227
- → [Relational Components](RELATIONAL_COMPONENTS.md) | [README](README.md#component-attributes)
260
+ → [Relational Components](RELATIONAL_COMPONENTS.md) | [README](../README.md#component-attributes)
228
261
 
229
262
  **PcgRandom** - High-quality PCG random generator
230
- → [README - Random Generators](README.md#random-number-generators) | [Random Performance](RANDOM_PERFORMANCE.md)
263
+ → [README - Random Generators](../README.md#random-number-generators) | [Random Performance](RANDOM_PERFORMANCE.md)
231
264
 
232
265
  **Point-in-Polygon** - 2D/3D containment tests
233
266
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#geometry)
234
267
 
235
268
  **PolygonCollider2DOptimizer** - Simplify collider points
236
- → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#polygoncollider2doptimizer-editor)
269
+ → [Utility Components](UTILITY_COMPONENTS.md#polygoncollider2doptimizer) | [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#polygoncollider2doptimizer-editor)
270
+
271
+ **Predictive Aiming** - Calculate where to aim at moving targets
272
+ → [Helper Utilities](HELPER_UTILITIES.md#predictive-aiming)
237
273
 
238
274
  **Pooled Buffers** - Reusable memory allocations
239
- → [README - Buffering Pattern](README.md#buffering-pattern) | [Glossary](GLOSSARY.md#pooled-buffers)
275
+ → [README - Buffering Pattern](../README.md#buffering-pattern) | [Glossary](GLOSSARY.md#pooled-buffers)
240
276
 
241
277
  **Positive Modulo** - Non-negative modulo operation
242
278
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#numeric-helpers) | [Glossary](GLOSSARY.md#positive-modulo)
@@ -245,10 +281,10 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
245
281
  → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#prefab-checker)
246
282
 
247
283
  **PriorityQueue** - Min/max heap-based priority queue
248
- → [Data Structures](DATA_STRUCTURES.md#binary-heap-priority-queue) | [README](README.md#data-structures)
284
+ → [Data Structures](DATA_STRUCTURES.md#binary-heap-priority-queue) | [README](../README.md#data-structures)
249
285
 
250
286
  **PRNG.Instance** - Thread-local default random generator
251
- → [README - Random Generators](README.md#random-number-generators)
287
+ → [README - Random Generators](../README.md#random-number-generators)
252
288
 
253
289
  **Property Drawers** - Custom inspector rendering
254
290
  → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#property-drawers--attributes)
@@ -267,11 +303,11 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
267
303
 
268
304
  ## R
269
305
 
270
- **Random Extensions** - Random vectors, colors, selections
271
- → [README - API Index](README.md#api-index)
306
+ **Random Extensions** - Random vectors, colors, weighted selection, subset sampling
307
+ → [Math & Extensions](MATH_AND_EXTENSIONS.md#random-generators)
272
308
 
273
309
  **Random Generators** - 12 high-performance PRNG implementations
274
- → [README - Random Generators](README.md#random-number-generators) | [Random Performance](RANDOM_PERFORMANCE.md)
310
+ → [README - Random Generators](../README.md#random-number-generators) | [Random Performance](RANDOM_PERFORMANCE.md)
275
311
 
276
312
  **Range<T>** - Inclusive/exclusive range helper
277
313
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#geometry)
@@ -283,10 +319,10 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
283
319
  → [Math & Extensions](MATH_AND_EXTENSIONS.md#unity-extensions)
284
320
 
285
321
  **Reflection Helpers** - High-performance cached reflection
286
- → [README - API Index](README.md#api-index) | [Reflection Helpers](REFLECTION_HELPERS.md)
322
+ → [README - API Index](../README.md#api-index) | [Reflection Helpers](REFLECTION_HELPERS.md)
287
323
 
288
324
  **Relational Components** - Auto-wire hierarchy components
289
- → [Relational Components Guide](RELATIONAL_COMPONENTS.md) | [README](README.md#component-attributes)
325
+ → [Relational Components Guide](RELATIONAL_COMPONENTS.md) | [README](../README.md#component-attributes)
290
326
 
291
327
  **RTree2D** - 2D R-tree for bounding boxes
292
328
  → [2D Spatial Trees](SPATIAL_TREES_2D_GUIDE.md) | [2D Performance](SPATIAL_TREE_2D_PERFORMANCE.md)
@@ -295,32 +331,32 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
295
331
  → [3D Spatial Trees](SPATIAL_TREES_3D_GUIDE.md) | [3D Performance](SPATIAL_TREE_3D_PERFORMANCE.md)
296
332
 
297
333
  **RuntimeSingleton<T>** - Component singleton pattern
298
- → [Singletons Guide](SINGLETONS.md) | [README](README.md#singleton-utilities-odin-compatible)
334
+ → [Singletons Guide](SINGLETONS.md) | [README](../README.md#singleton-utilities-odin-compatible)
299
335
 
300
336
  ---
301
337
 
302
338
  ## S
303
339
 
304
340
  **ScriptableObject Singleton** - Settings/data singleton pattern
305
- → [Singletons Guide](SINGLETONS.md) | [README](README.md#singleton-utilities-odin-compatible)
341
+ → [Singletons Guide](SINGLETONS.md) | [README](../README.md#singleton-utilities-odin-compatible)
306
342
 
307
343
  **ScriptableObject Singleton Creator** - Auto-create singleton assets
308
344
  → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#scriptableobject-singleton-creator)
309
345
 
310
346
  **Serialization** - JSON, Protobuf, BinaryFormatter support
311
- → [Serialization Guide](SERIALIZATION.md) | [README](README.md#serialization)
347
+ → [Serialization Guide](SERIALIZATION.md) | [README](../README.md#serialization)
312
348
 
313
349
  **SiblingComponent** - Auto-wire components on same GameObject
314
- → [Relational Components](RELATIONAL_COMPONENTS.md) | [README](README.md#component-attributes)
350
+ → [Relational Components](RELATIONAL_COMPONENTS.md) | [README](../README.md#component-attributes)
315
351
 
316
352
  **Singletons** - Runtime and ScriptableObject singleton patterns
317
- → [Singletons Guide](SINGLETONS.md) | [README](README.md#singleton-utilities-odin-compatible)
353
+ → [Singletons Guide](SINGLETONS.md) | [README](../README.md#singleton-utilities-odin-compatible)
318
354
 
319
355
  **Sparse Set** - O(1) membership with dense iteration
320
- → [Data Structures](DATA_STRUCTURES.md#sparse-set) | [README](README.md#data-structures)
356
+ → [Data Structures](DATA_STRUCTURES.md#sparse-set) | [README](../README.md#data-structures)
321
357
 
322
358
  **Spatial Hash 2D/3D** - Grid-based spatial structure
323
- → [README - Choosing Spatial Structures](README.md#choosing-spatial-structures)
359
+ → [README - Choosing Spatial Structures](../README.md#choosing-spatial-structures)
324
360
 
325
361
  **Spatial Trees** - Fast spatial queries (QuadTree, KdTree, RTree, OctTree)
326
362
  → [2D Guide](SPATIAL_TREES_2D_GUIDE.md) | [3D Guide](SPATIAL_TREES_3D_GUIDE.md)
@@ -349,11 +385,20 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
349
385
  **Sprite Sheet Animation Creator** - Convert sprite sheets to clips
350
386
  → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#sprite-sheet-animation-creator)
351
387
 
352
- **String Extensions** - Casing, encoding, Levenshtein distance
353
- → [Math & Extensions](MATH_AND_EXTENSIONS.md#strings) | [README - API Index](README.md#api-index)
388
+ **SpriteRendererMetadata** - Stack-based color and material management
389
+ → [Utility Components](UTILITY_COMPONENTS.md#spriterenderermetadata)
390
+
391
+ **SpriteRendererSync** - Mirror SpriteRenderer properties to another renderer
392
+ → [Utility Components](UTILITY_COMPONENTS.md#spriterenderersyncer)
393
+
394
+ **StartTracker** - Track MonoBehaviour Start() lifecycle event
395
+ → [Utility Components](UTILITY_COMPONENTS.md#starttracker)
396
+
397
+ **String Extensions** - Casing, encoding, Levenshtein distance, Base64, analysis
398
+ → [Math & Extensions](MATH_AND_EXTENSIONS.md#strings)
354
399
 
355
400
  **StringInList** - String dropdown property drawer
356
- → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#stringinlist-property-drawer) | [README - API Index](README.md#api-index)
401
+ → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#stringinlist-property-drawer) | [README - API Index](../README.md#api-index)
357
402
 
358
403
  ---
359
404
 
@@ -369,56 +414,56 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
369
414
  → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#texture-settings-applier)
370
415
 
371
416
  **Trie** - Prefix tree for autocomplete
372
- → [Data Structures](DATA_STRUCTURES.md#trie-prefix-tree) | [README](README.md#data-structures)
417
+ → [Data Structures](DATA_STRUCTURES.md#trie-prefix-tree) | [README](../README.md#data-structures)
373
418
 
374
419
  ---
375
420
 
376
421
  ## U
377
422
 
378
423
  **Unity Extensions** - Rect/Bounds, Camera, Rigidbody2D, Grid helpers
379
- → [Math & Extensions](MATH_AND_EXTENSIONS.md#unity-extensions) | [README - API Index](README.md#api-index)
424
+ → [Math & Extensions](MATH_AND_EXTENSIONS.md#unity-extensions) | [README - API Index](../README.md#api-index)
380
425
 
381
- **UnityMainThreadDispatcher** - Execute work on main thread
382
- → [README - API Index](README.md#api-index)
426
+ **UnityMainThreadDispatcher** - Execute work on main thread from background threads
427
+ → [Helper Utilities](HELPER_UTILITIES.md#threading)
383
428
 
384
429
  ---
385
430
 
386
431
  ## V
387
432
 
388
433
  **ValidateAssignment** - Inspector validation attribute
389
- → [README - Component Attributes](README.md#component-attributes)
434
+ → [README - Component Attributes](../README.md#component-attributes)
390
435
 
391
436
  **Vector Extensions** - Random vectors, noise detection
392
- → [README - API Index](README.md#api-index)
437
+ → [README - API Index](../README.md#api-index)
393
438
 
394
439
  ---
395
440
 
396
441
  ## W
397
442
 
398
443
  **WallMath** - Positive modulo, wrapped arithmetic
399
- → [Math & Extensions](MATH_AND_EXTENSIONS.md#numeric-helpers) | [README - API Index](README.md#api-index)
444
+ → [Math & Extensions](MATH_AND_EXTENSIONS.md#numeric-helpers) | [README - API Index](../README.md#api-index)
400
445
 
401
446
  **WallstopArrayPool<T>** - Pooled array rental
402
- → [README - Buffering Pattern](README.md#buffering-pattern)
447
+ → [README - Buffering Pattern](../README.md#buffering-pattern)
403
448
 
404
449
  **WallstopFastArrayPool<T>** - Fast array pool for short-lived arrays
405
- → [README - Buffering Pattern](README.md#buffering-pattern)
450
+ → [README - Buffering Pattern](../README.md#buffering-pattern)
406
451
 
407
452
  **Weighted Random** - Weighted random selection
408
- → [README - Random Generators](README.md#random-number-generators)
453
+ → [README - Random Generators](../README.md#random-number-generators)
409
454
 
410
455
  **WShowIf** - Conditional field display attribute
411
- → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#wshowif-property-drawer) | [README - API Index](README.md#api-index)
456
+ → [Editor Tools Guide](EDITOR_TOOLS_GUIDE.md#wshowif-property-drawer) | [README - API Index](../README.md#api-index)
412
457
 
413
458
  ---
414
459
 
415
460
  ## X
416
461
 
417
462
  **XorShift Random** - Fast XorShift PRNG
418
- → [README - Random Generators](README.md#random-number-generators) | [Random Performance](RANDOM_PERFORMANCE.md)
463
+ → [README - Random Generators](../README.md#random-number-generators) | [Random Performance](RANDOM_PERFORMANCE.md)
419
464
 
420
465
  **XoroShiro Random** - Fast XoroShiro PRNG
421
- → [README - Random Generators](README.md#random-number-generators) | [Random Performance](RANDOM_PERFORMANCE.md)
466
+ → [README - Random Generators](../README.md#random-number-generators) | [Random Performance](RANDOM_PERFORMANCE.md)
422
467
 
423
468
  ---
424
469
 
@@ -426,4 +471,4 @@ Alphabetical index of all Unity Helpers features with quick links to documentati
426
471
 
427
472
  - [Glossary](GLOSSARY.md) - Term definitions
428
473
  - [Getting Started Guide](GETTING_STARTED.md) - Quick start guide
429
- - [Main Documentation](README.md) - Main documentation
474
+ - [Main Documentation](../README.md) - Main documentation