File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7- ## [ 1.0.0] - 2021-10-21
8- - Initial major release.
9-
107## [ Unreleased]
8+ - Changed tween to stop if an exception occurs in the update logic.
9+
10+ ## [ 1.0.0] - 2021-10-21
11+ - Initial major release.
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public sealed class Tween
3232 /// <summary>
3333 /// Package version.
3434 /// </summary>
35- public static readonly Version Version = new Version ( 1 , 0 , 2 ) ;
35+ public static readonly Version Version = new Version ( 1 , 0 , 1 ) ;
3636
3737 private static TweenMono _mono ;
3838
@@ -421,6 +421,7 @@ private void UpdateCurrentValue(object value)
421421 catch ( Exception e )
422422 {
423423 Debug . LogException ( e ) ;
424+ Stop ( ) ;
424425 }
425426 }
426427
Original file line number Diff line number Diff line change 11{
22 "name" : " com.davidfdev.tweening" ,
3- "version" : " 1.0.0 " ,
3+ "version" : " 1.0.1 " ,
44 "displayName" : " Tweening Animations by DavidFDev" ,
55 "description" : " An easy solution for complex tweening animations" ,
66 "unity" : " 2019.1" ,
You can’t perform that action at this time.
0 commit comments