Skip to content

Commit

Permalink
Version 0.12.0 Alpha.5 [Prerelease]
Browse files Browse the repository at this point in the history
Warning: This commit hash may not be preserved!

Functional:
- WorldUpdateAllocator in baking systems
- CoreBootstrap.InstallNetCodePreSpawnEnableInEditorSystem()
- Optimized skeleton non-destructive sockets
- Optimized skeleton authoring cache
- EWBIK modular solve algorithm
- GraphicsEventPostal, GraphicsEventTunnel, and VfxGraphEventBufferProvider
- ComponentBroker
- Unika runtime (minus Burst)
- Unika user authoring and baking
- Baker interfaces
- Kinemation baker interface-based renderer overrides
- Unika baker interface source generation
- Unity 6 Myri Span Baker
- Myri managed editor driver (domain reload deadlock workaround)
- Improved LOD baking
- TypePack and optimized multi-component structural changes
- LOD Pack (LOD Append redesign supporting 3-LOD levels where the last can be a fade-out)

Untested:
- [BurstCompile] nested type hoisting in source generators for ICollectionComponent
- Elliptical swing-twist constraint and solver
- LATIOS_BL_FORK
- VfxGraphGlobalBufferProvider
- UnitySim updated MotionExpansion and Jacobians
- Psyshock QuickTests ellipse and frustum methods
- PhysicsAspectLookup
- Bits (packed boolean and small integer utilities)
- Core and Transforms shader library
- Unique meshes (construct meshes from dynamic buffers)
- Havok compatibility fix
- DynamicHashMap inspector (crude)
- TempQuery (job-compatible entity queries)

Incomplete (canceled for 0.12):
- Mimic.Shuriken
- Psyshock terrain
- Unique meshes normal and tangent recalculations
  • Loading branch information
Dreaming381 committed Dec 28, 2024
1 parent 3ae7c26 commit e1e39eb
Show file tree
Hide file tree
Showing 46 changed files with 1,846 additions and 1,168 deletions.
2 changes: 1 addition & 1 deletion Calligraphics/Authoring/TextAnimationAuthoring.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace Latios.Calligraphics.Authoring
{
[DisallowMultipleComponent]
[AddComponentMenu("Latios/Calligraphics/Text Animation")]
[AddComponentMenu("Latios/Calligraphics/Text Animation (Calligraphics)")]
[RequireComponent(typeof(TextRendererAuthoring))]
public class TextAnimationAuthoring : MonoBehaviour
{
Expand Down
8 changes: 4 additions & 4 deletions Calligraphics/Authoring/TextRendererAuthoring.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
namespace Latios.Calligraphics.Authoring
{
[DisallowMultipleComponent]
[AddComponentMenu("Latios/Calligraphics/Text Renderer")]
[AddComponentMenu("Latios/Calligraphics/Text Renderer (Calligraphics)")]
public class TextRendererAuthoring : MonoBehaviour
{
[TextArea(5, 10)]
Expand Down Expand Up @@ -105,9 +105,9 @@ public override void Bake(TextRendererAuthoring authoring)
enableKerning = authoring.enableKerning,
fontStyle = authoring.fontStyle,
fontWeight = authoring.fontWeight,
wordSpacing = authoring.wordSpacing,
lineSpacing = authoring.lineSpacing,
paragraphSpacing = authoring.paragraphSpacing,
wordSpacing = authoring.wordSpacing,
lineSpacing = authoring.lineSpacing,
paragraphSpacing = authoring.paragraphSpacing,
});
}

Expand Down
Loading

0 comments on commit e1e39eb

Please sign in to comment.