Skip to content

Commit

Permalink
Merge pull request #12 from AnnulusGames/v0.1.7
Browse files Browse the repository at this point in the history
V0.1.7
  • Loading branch information
AnnulusGames authored Oct 15, 2023
2 parents 078cb46 + 13d6a38 commit 2cdd165
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions MagicTween/Assets/MagicTween/Runtime/Core/TweenLinkTrigger.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using MagicTween.Core;
using UnityEngine;

namespace MagicTween
Expand Down Expand Up @@ -38,6 +39,7 @@ void OnDisable()
#if UNITY_EDITOR
if (isQuittingPlayMode) return;
#endif
if (!TweenWorld.World.IsCreated) return;
for (int i = 0; i < items.Count; i++)
{
var (tween, linkBehaviour) = items[i];
Expand Down Expand Up @@ -66,6 +68,7 @@ void OnDestroy()
#if UNITY_EDITOR
if (isQuittingPlayMode) return;
#endif
if (!TweenWorld.World.IsCreated) return;
for (int i = 0; i < items.Count; i++)
{
var (tween, linkBehaviour) = items[i];
Expand Down
2 changes: 1 addition & 1 deletion MagicTween/Assets/MagicTween/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.annulusgames.magic-tween",
"version": "0.1.6",
"version": "0.1.7",
"displayName": "Magic Tween",
"description": "Extremely fast tween library implemented in Unity ECS",
"unity": "2022.1",
Expand Down
2 changes: 1 addition & 1 deletion MagicTween/ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ PlayerSettings:
vulkanEnableLateAcquireNextImage: 0
vulkanEnableCommandBufferRecycling: 1
loadStoreDebugModeEnabled: 0
bundleVersion: 0.1.6
bundleVersion: 0.1.7
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down

0 comments on commit 2cdd165

Please sign in to comment.