com.wallstop-studios.unity-helpers 2.0.0 → 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.
- package/.github/workflows/format-on-demand.yml +2 -2
- package/.github/workflows/markdown-json.yml +1 -1
- package/.github/workflows/npm-publish.yml +1 -1
- package/.github/workflows/prettier-autofix.yml +4 -4
- package/.github/workflows/yaml-format-lint.yml +1 -1
- package/Docs/EFFECTS_SYSTEM.md +1316 -0
- package/{EFFECTS_SYSTEM_TUTORIAL.md → Docs/EFFECTS_SYSTEM_TUTORIAL.md} +1 -1
- package/{GETTING_STARTED.md → Docs/GETTING_STARTED.md} +10 -8
- package/{GLOSSARY.md → Docs/GLOSSARY.md} +4 -4
- package/Docs/HELPER_UTILITIES.md +885 -0
- package/Docs/HELPER_UTILITIES.md.meta +7 -0
- package/{INDEX.md → Docs/INDEX.md} +107 -62
- package/Docs/MATH_AND_EXTENSIONS.md +1039 -0
- package/{RANDOM_PERFORMANCE.md → Docs/RANDOM_PERFORMANCE.md} +15 -15
- package/{RELATIONAL_COMPONENTS.md → Docs/RELATIONAL_COMPONENTS.md} +21 -3
- package/{SPATIAL_TREES_2D_GUIDE.md → Docs/SPATIAL_TREES_2D_GUIDE.md} +2 -2
- package/{SPATIAL_TREES_3D_GUIDE.md → Docs/SPATIAL_TREES_3D_GUIDE.md} +1 -1
- package/{SPATIAL_TREE_2D_PERFORMANCE.md → Docs/SPATIAL_TREE_2D_PERFORMANCE.md} +64 -64
- package/{SPATIAL_TREE_3D_PERFORMANCE.md → Docs/SPATIAL_TREE_3D_PERFORMANCE.md} +64 -64
- package/Docs/UTILITY_COMPONENTS.md +906 -0
- package/Docs/UTILITY_COMPONENTS.md.meta +7 -0
- package/Docs/VISUAL_COMPONENTS.md +337 -0
- package/Docs/VISUAL_COMPONENTS.md.meta +7 -0
- package/Editor/Sprites/AnimationCopier.cs +3 -3
- package/README.md +69 -62
- package/Runtime/AssemblyInfo.cs +2 -0
- package/Runtime/Core/DataStructure/KDTree3D.cs +1 -1
- package/Runtime/Core/DataStructure/OctTree3D.cs +1 -1
- package/Runtime/Core/Extension/AsyncOperationExtensions.cs +122 -0
- package/Runtime/Core/Serialization/ProtobufUnitySurrogates.cs +24 -29
- package/Runtime/Integrations/Reflex/AssemblyInfo.cs +7 -0
- package/Runtime/Integrations/Reflex/AssemblyInfo.cs.meta +11 -0
- package/Runtime/Integrations/Reflex/ContainerRelationalExtensions.cs +198 -0
- package/Runtime/Integrations/Reflex/ContainerRelationalExtensions.cs.meta +11 -0
- package/Runtime/Integrations/Reflex/RelationalComponentsInstaller.cs +86 -0
- package/Runtime/Integrations/Reflex/RelationalComponentsInstaller.cs.meta +11 -0
- package/Runtime/Integrations/Reflex/RelationalReflexSceneBootstrapper.cs +316 -0
- package/Runtime/Integrations/Reflex/RelationalReflexSceneBootstrapper.cs.meta +11 -0
- package/Runtime/Integrations/Reflex/RelationalSceneAssignmentOptions.cs +86 -0
- package/Runtime/Integrations/Reflex/RelationalSceneAssignmentOptions.cs.meta +11 -0
- package/Runtime/Integrations/Reflex/WallstopStudios.UnityHelpers.Integration.Reflex.asmdef +20 -0
- package/Runtime/Integrations/Reflex/WallstopStudios.UnityHelpers.Integration.Reflex.asmdef.meta +7 -0
- package/Runtime/Integrations/Reflex.meta +8 -0
- package/Runtime/Utils/ScriptableObjectSingleton.cs +1 -1
- package/Samples~/DI - Reflex/README.md +527 -0
- package/Samples~/DI - Reflex/README.md.meta +7 -0
- package/Samples~/DI - Reflex/Scripts/ReflexPaletteService.cs +36 -0
- package/Samples~/DI - Reflex/Scripts/ReflexPaletteService.cs.meta +11 -0
- package/Samples~/DI - Reflex/Scripts/ReflexRelationalConsumer.cs +79 -0
- package/Samples~/DI - Reflex/Scripts/ReflexRelationalConsumer.cs.meta +11 -0
- package/Samples~/DI - Reflex/Scripts/ReflexSampleInstaller.cs +30 -0
- package/Samples~/DI - Reflex/Scripts/ReflexSampleInstaller.cs.meta +11 -0
- package/Samples~/DI - Reflex/Scripts/ReflexSpawner.cs +79 -0
- package/Samples~/DI - Reflex/Scripts/ReflexSpawner.cs.meta +11 -0
- package/Samples~/DI - Reflex/Scripts/Samples.UnityHelpers.DI.Reflex.asmdef +26 -0
- package/Samples~/DI - Reflex/Scripts/Samples.UnityHelpers.DI.Reflex.asmdef.meta +9 -0
- package/Samples~/DI - Reflex/Scripts.meta +8 -0
- package/Samples~/DI - Reflex.meta +8 -0
- package/Samples~/DI - VContainer/README.md +6 -5
- package/Samples~/DI - Zenject/README.md +6 -5
- package/Tests/Editor/Core/Attributes/RelationalComponentAssignerTests.cs +29 -31
- package/Tests/Editor/Integrations/Reflex/ReflexIntegrationCompilationTests.cs +41 -0
- package/Tests/Editor/Integrations/Reflex/ReflexIntegrationCompilationTests.cs.meta +11 -0
- package/Tests/Editor/Integrations/Reflex/WallstopStudios.UnityHelpers.Tests.Editor.Reflex.asmdef +27 -0
- package/Tests/Editor/Integrations/Reflex/WallstopStudios.UnityHelpers.Tests.Editor.Reflex.asmdef.meta +7 -0
- package/Tests/Editor/Integrations/Reflex.meta +8 -0
- package/Tests/Editor/Integrations/VContainer/VContainerRelationalEntryPointTests.cs +15 -16
- package/Tests/Editor/Integrations/VContainer/VContainerRelationalHelpersTests.cs +7 -13
- package/Tests/Editor/Integrations/Zenject/ZenjectRelationalHelpersTests.cs +7 -11
- package/Tests/Editor/Integrations/Zenject/ZenjectRelationalInitializerTests.cs +19 -21
- package/Tests/Editor/PersistentDirectorySettingsTests.cs +0 -1
- package/Tests/Editor/Sprites/AnimationCopierFilterTests.cs +0 -1
- package/Tests/Editor/Sprites/AnimationViewerWindowTests.cs +2 -2
- package/Tests/Editor/Tools/ImageBlurToolTests.cs +1 -1
- package/Tests/Editor/Utils/CommonTestBase.cs +17 -0
- package/Tests/Editor/Utils/ScriptableObjectSingletonCreatorTests.cs +1 -1
- package/Tests/Runtime/Extensions/AsyncOperationExtensionsTests.cs +179 -0
- package/Tests/Runtime/Extensions/RandomExtensionTests.cs +55 -0
- package/Tests/Runtime/Integrations/Reflex/RelationalComponentsReflexTests.cs +445 -0
- package/Tests/Runtime/Integrations/Reflex/RelationalComponentsReflexTests.cs.meta +11 -0
- package/Tests/Runtime/Integrations/Reflex/WallstopStudios.UnityHelpers.Tests.Runtime.Reflex.asmdef +28 -0
- package/Tests/Runtime/Integrations/Reflex/WallstopStudios.UnityHelpers.Tests.Runtime.Reflex.asmdef.meta +7 -0
- package/Tests/Runtime/Integrations/Reflex.meta +8 -0
- package/Tests/Runtime/Integrations/VContainer/RelationalComponentsVContainerTests.cs +24 -29
- package/Tests/Runtime/Integrations/VContainer/RelationalObjectPoolsVContainerTests.cs +8 -3
- package/Tests/Runtime/Integrations/Zenject/RelationalComponentsZenjectTests.cs +10 -20
- package/Tests/Runtime/Performance/RandomPerformanceTests.cs +1 -1
- package/Tests/Runtime/Performance/SpatialTree2DPerformanceTests.cs +1 -1
- package/Tests/Runtime/Performance/SpatialTree3DPerformanceTests.cs +1 -1
- package/Tests/Runtime/Serialization/JsonRoundtripComprehensiveTests.cs +4 -9
- package/Tests/Runtime/Serialization/ProtoRoundtripComprehensiveTests.cs +13 -13
- package/Tests/Runtime/TestUtils/CommonTestBase.cs +11 -0
- package/Tests/Runtime/TestUtils/ReflexTestSupport.cs +111 -0
- package/Tests/Runtime/TestUtils/ReflexTestSupport.cs.meta +12 -0
- package/Tests/Runtime/Utils/MatchColliderToSpriteTests.cs +4 -4
- package/Tests/TestUtils.meta +8 -0
- package/package.json +6 -1
- package/EFFECTS_SYSTEM.md +0 -242
- package/MATH_AND_EXTENSIONS.md +0 -316
- /package/{CHANGELOG.md → Docs/CHANGELOG.md} +0 -0
- /package/{CHANGELOG.md.meta → Docs/CHANGELOG.md.meta} +0 -0
- /package/{CONTRIBUTING.md → Docs/CONTRIBUTING.md} +0 -0
- /package/{CONTRIBUTING.md.meta → Docs/CONTRIBUTING.md.meta} +0 -0
- /package/{DATA_STRUCTURES.md → Docs/DATA_STRUCTURES.md} +0 -0
- /package/{DATA_STRUCTURES.md.meta → Docs/DATA_STRUCTURES.md.meta} +0 -0
- /package/{EDITOR_TOOLS_GUIDE.md → Docs/EDITOR_TOOLS_GUIDE.md} +0 -0
- /package/{EDITOR_TOOLS_GUIDE.md.meta → Docs/EDITOR_TOOLS_GUIDE.md.meta} +0 -0
- /package/{EFFECTS_SYSTEM.md.meta → Docs/EFFECTS_SYSTEM.md.meta} +0 -0
- /package/{EFFECTS_SYSTEM_TUTORIAL.md.meta → Docs/EFFECTS_SYSTEM_TUTORIAL.md.meta} +0 -0
- /package/{GETTING_STARTED.md.meta → Docs/GETTING_STARTED.md.meta} +0 -0
- /package/{GLOSSARY.md.meta → Docs/GLOSSARY.md.meta} +0 -0
- /package/{HULLS.md → Docs/HULLS.md} +0 -0
- /package/{HULLS.md.meta → Docs/HULLS.md.meta} +0 -0
- /package/{INDEX.md.meta → Docs/INDEX.md.meta} +0 -0
- /package/{LICENSE.md → Docs/LICENSE.md} +0 -0
- /package/{LICENSE.md.meta → Docs/LICENSE.md.meta} +0 -0
- /package/{MATH_AND_EXTENSIONS.md.meta → Docs/MATH_AND_EXTENSIONS.md.meta} +0 -0
- /package/{RANDOM_PERFORMANCE.md.meta → Docs/RANDOM_PERFORMANCE.md.meta} +0 -0
- /package/{REFLECTION_HELPERS.md → Docs/REFLECTION_HELPERS.md} +0 -0
- /package/{REFLECTION_HELPERS.md.meta → Docs/REFLECTION_HELPERS.md.meta} +0 -0
- /package/{RELATIONAL_COMPONENTS.md.meta → Docs/RELATIONAL_COMPONENTS.md.meta} +0 -0
- /package/{SERIALIZATION.md → Docs/SERIALIZATION.md} +0 -0
- /package/{SERIALIZATION.md.meta → Docs/SERIALIZATION.md.meta} +0 -0
- /package/{SINGLETONS.md → Docs/SINGLETONS.md} +0 -0
- /package/{SINGLETONS.md.meta → Docs/SINGLETONS.md.meta} +0 -0
- /package/{SPATIAL_TREES_2D_GUIDE.md.meta → Docs/SPATIAL_TREES_2D_GUIDE.md.meta} +0 -0
- /package/{SPATIAL_TREES_3D_GUIDE.md.meta → Docs/SPATIAL_TREES_3D_GUIDE.md.meta} +0 -0
- /package/{SPATIAL_TREE_2D_PERFORMANCE.md.meta → Docs/SPATIAL_TREE_2D_PERFORMANCE.md.meta} +0 -0
- /package/{SPATIAL_TREE_3D_PERFORMANCE.md.meta → Docs/SPATIAL_TREE_3D_PERFORMANCE.md.meta} +0 -0
- /package/{SPATIAL_TREE_SEMANTICS.md → Docs/SPATIAL_TREE_SEMANTICS.md} +0 -0
- /package/{SPATIAL_TREE_SEMANTICS.md.meta → Docs/SPATIAL_TREE_SEMANTICS.md.meta} +0 -0
- /package/{THIRD_PARTY_NOTICES.md → Docs/THIRD_PARTY_NOTICES.md} +0 -0
- /package/{THIRD_PARTY_NOTICES.md.meta → Docs/THIRD_PARTY_NOTICES.md.meta} +0 -0
|
@@ -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
|
-
→ [
|
|
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
|
|
81
|
-
→ [
|
|
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,
|
|
271
|
-
→ [
|
|
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
|
-
**
|
|
353
|
-
→ [
|
|
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
|
-
→ [
|
|
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
|