Skip to content

Commit 5c84776

Browse files
committed
cleanup
1 parent 14895c5 commit 5c84776

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

TweenSharp.cs

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,17 @@ public class TweenSharp: TSTimeDef
1313
public object onUpdateParams = null;
1414
public bool reversed = false;
1515
public bool suppressEvents = false;
16-
17-
/*
18-
, onCompleteScope:1,
19-
useFrames:1, runBackwards:1, startAt:1, onUpdateScope:1,
20-
onStart:1, onStartParams:1, onStartScope:1, onReverseComplete:1, onReverseCompleteParams:1, onReverseCompleteScope:1,
21-
onRepeat:1, onRepeatParams:1, onRepeatScope:1, easeParams:1,
22-
yoyo:1, onCompleteListener:1, onUpdateListener:1, onStartListener:1, onReverseCompleteListener:1, onRepeatListener:1,
23-
orientToBezier:1, immediateRender:1, repeat:1, repeatDelay:1, data:1, paused:1, reversed:1};
24-
*/
16+
public TSEase.EaseFunction ease = Linear.EaseNone;
2517

2618
private float position;
2719
private Dictionary<string, float> properties;
28-
2920
private object target;
30-
3121
private List<string> propertyNames;
3222
private List<float> propertyStartValues;
3323
private List<float> propertyTargetValues;
3424
private List<TSPlugin> propertyPlugins;
3525
private List<PropertyInfo> propertyInfos;
3626

37-
public TSEase.EaseFunction ease = Linear.EaseNone;
38-
3927
public TweenSharp(object target, float duration, Dictionary<string, object> args) : base(duration)
4028
{
4129
float f = 0;

0 commit comments

Comments
 (0)