Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit 693ab12

Browse files
authored
Merge pull request #16 from AnnulusGames/v0.1.10
v0.1.10
2 parents f8fd81e + 5ed187d commit 693ab12

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

MagicTween/Assets/MagicTween/Runtime/Extensions/TextMeshPro/TMPTweenAnimator.cs

+14-3
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,21 @@ internal void AddTween(Tween tween)
296296
internal void ResizeArray()
297297
{
298298
var length = GetCharCount();
299-
if (length != tweenCharInfo.Length)
299+
var prevLength = tweenCharInfo.Length;
300+
if (length != prevLength)
300301
{
301302
Array.Resize(ref tweenCharInfo, length);
303+
304+
if (length > prevLength)
305+
{
306+
for (int i = prevLength; i < length; i++)
307+
{
308+
tweenCharInfo[i].color = new(tmpText.color.r, tmpText.color.g, tmpText.color.b, tmpText.color.a);
309+
tweenCharInfo[i].rotation = Quaternion.identity;
310+
tweenCharInfo[i].scale = Vector3.one;
311+
tweenCharInfo[i].offset = Vector3.zero;
312+
}
313+
}
302314
}
303315
}
304316

@@ -317,9 +329,8 @@ internal bool UpdateInternal()
317329

318330
if (!tmpText.gameObject.activeInHierarchy) return true;
319331

320-
ResizeArray();
321-
322332
tmpText.ForceMeshUpdate();
333+
ResizeArray();
323334

324335
var textInfo = tmpText.textInfo;
325336
for (int i = 0; i < tweenCharInfo.Length; i++)

MagicTween/Assets/MagicTween/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.annulusgames.magic-tween",
3-
"version": "0.1.9",
3+
"version": "0.1.10",
44
"displayName": "Magic Tween",
55
"description": "Extremely fast tween library implemented with Unity ECS",
66
"unity": "2022.1",

MagicTween/ProjectSettings/ProjectSettings.asset

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ PlayerSettings:
133133
vulkanEnableLateAcquireNextImage: 0
134134
vulkanEnableCommandBufferRecycling: 1
135135
loadStoreDebugModeEnabled: 0
136-
bundleVersion: 0.1.9
136+
bundleVersion: 0.1.10
137137
preloadedAssets: []
138138
metroInputSource: 0
139139
wsaTransparentSwapchain: 0

0 commit comments

Comments
 (0)